Would you like to give an example of what you've already tried, so that way we can see exactly what you're trying to do and how you want to do it.
you could create a loop similar to this (may have errors, but you'll get the idea) :
$countnumber = 0;
$db = mysql_connect("localhost", "root");
mysql_select_db("mydb",$db);
do {
$countnumber=$countnumber+1;
$$countnumber = mysql_query("SELECT * FROM employees WHERE id='$countnumber'",$db);
}
while (countnumber<=11)
Then, in your dropdown list, just use print $1;, print $2, etc.
Im not sure if this is what you want, but you may be able to use some of it.