Well my drop down is pretty simple - here's one of them, along with the form code it sits in:
<form action="view_results.php" method="post">
<select name="type">
<option value="any">Any</option>
<option value="House">House</option>
<option value="Apartment">Apartment</option>
</select>
<input type="submit" value="Search">
</form>
and then my query on view_results.php looks like this (obviously the query deals with multiple fields I didn't put above):
$query = "SELECT * FROM Region, City, Living_Space WHERE Region.Name = '$region' AND Region.ID = Living_Space.Region AND City.Name = '$city' AND City.ID = Living_Space.City AND Living_Space.Dogs = '$dogs' AND Living_Space.Cats = '$cats' AND Living_Space.Other_Pets = '$other_pets' AND Living_Space.Status = 'Visible' AND Living_Space.Expiration_Date > Current_Date ORDER by Living_Space.Name";
I haven't had time to try Pig's suggestion yet but I'll get to it next.
thanks!