Código PHP:
<?php
$link = mysql_connect("localhost", "root", "");
mysql_select_db("boutiquepropeties");
$sql ="SELECT Property, Region, Region1, TypePropert, Location, Bedrooms, Parking, Furnished, Bathrooms, Views, Price, Wineceller, Dock, BeachClub, Beach, GuestHouse, Elevator, Tennis FROM properties where Property='$_POST[nombreB]'";
$result = mysql_query($sql,$link );
echo $result[0]['Property'];
?>
<br>
<br>
<br>
<table border="0" align="Center">
<tr>
Property
</tr>
<tr>
<select name=nombre class=Estilo2>
<option selected><?php echo $_POST[nombreB]?></option>
</select>
</tr>
</table>
<table border="0" align="Center">
<tr>
Region
</tr>
<tr>
<td>
<select name="pais" class="Estilo2" disabled="Disabled">
<option selected><?php echo $Region ?></option>
</select>
</td>
<td>
</td>
<td>
<select name="ciudad" class="Estilo2" disabled="Disabled">
<option value="0">________________</option>
</select>
</td>
</tr>
</table>
esto es un fragmento del codigo lo que quieor hacer es referenciar $Region que es un campo que saco del query pero no doy con bola de ocmo obtener el valor, y mostrarlo al usuario en u select y asi lo haria con los demas campos del query gracias