Well,
it depends on how you make the drop-down boxes. Are they generated from the database/ Or have you typed them?
If you form them from your dtabase, you have a while loop in which you create the list of options, instead of just:
echo "<option value=\"$row['value']\">$row['value']</option>"
//you do:
if($selectedvalue = $row['value']
{
$check = 'selected'
}
else
$check = "";
}
echo "<option $check value=\"$row['value']\">$row['value']</option>"