Haber prueba asi:
Código PHP:
<select name="EMPG004" id="EMPG004" style="width:130px;">
<?php
$result = sql_query("select nombre from tblnacionalidad", $dbi);
if (sql_num_rows($result, $dbi) > 0) {
while(list($nombre) = sql_fetch_array($result, $dbi)) {
if($EMPG004==$nombre){
echo "<option value='$EMPG004' selected>$EMPG004</opcion>";
}
else{
echo "<option value='$nombre'>$nombre</opcion>";
}
}
}
?>
</select>