Tschebetto: Dropdown in der Zelle nicht unten

Beitrag lesen

Hallo Leute,

ich hoffe ihr könnt mir helfen.
Ich habe eine einfache Tabelle (1 Zeile, 3 Spalten)
In der ersten Zelle ist reiner Text. In der 2 ist ein DropDown und in der 3. 3 Bilder.

<table border="1" cellspacing="0" cellpadding="0">  
<tr>  
<td class="contact">Design:</td>  
<td valign="bottom"><form name="form">  
<select  name="link" onChange="window.location.href =  document.form.link.options[document.form.link.selectedIndex].value;"  class="Menue">  
<option class="Menue0" selected value="#"> Bitte wählen </option>  
<option class="Menue1" value="<?php echo $_SERVER['PHP_SELF']?>?style=slideshow"> schwarz </option>  
<option class="Menue2" value="<?php echo $_SERVER['PHP_SELF']?>?style=slideshow2"> weiss </option>  
</select>  
</form>  
</td>  
<td>&nbsp;<img  src="px/deutsch.jpg" width="14" height="10" /> <img  src="px/britain.jpg" width="14" height="10" /> <img  src="px/russland.jpg" width="14" height="10" /></td>  
</tr>  
</table>

das CSS dazu sieht so aus:

select.Menue{  
font-family: Tahoma, Verdana;  
font-size: 10px;  
font-style: normal;  
}  
option.Menue0{  
color:#FFFFFF;  
background-color:#000000;  
}  
option.Menue1{  
color:#FFFFFF;  
background-color:#000000;  
}  
option.Menue2{  
color:#000000;  
background-color:#FFFFFF;  
}  
.contact {  
font-family:Tahoma, Verdana;  
font-size:10px;  
color: #FFFFFF;  
}

Im IE 7siehts so aus:
IE

Im FF 6.0.2 so:
FF

Hier mein Doctype:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">

Wie bekomme ich es hin, dass im IE das DropDown nicht on top ist?
Danke!
LG
Stefan