a load of IFs to check for whatever your talking about and add "selected" to the option you want...
probably could just loop whatever goes in the drop-down list, then you'd only have to write 1 IF ELSE e.g.
$drops = array("uk","us","fu","bs","hi");
foreach($drops as $drop)
{
if($drop == "uk")
{
print("selected option");
}
else{
print("...another option");
}
}
something like that but with effort...