i have a form with a few combo boxes, that they are filled from the db, i know how to fill them but i want to know what can i do to select one of the values of the combo by default, because this combo has female and male, but i want that when the user open the page it fills the combo and then place it on male or female depending what he choosed before in the registration page
<select name="sexo" class="Box">
<? while ($row=mysql_fetch_array($rsexos))
{?>
<option value="<?=$row["id_sexo"]?>">
<?=$row["descripcion"]?>
</option>
<?}
?>
</select>