alte: grundlegendes Verständnisproblem

Beitrag lesen

Warum geht:

<html>
 <head>
  <script type="text/javascript" >
   function los_geht(wert) {
    alert(wert);
   }
  </Script>
 </head>
 <body>
  <select name="wurst">
   <option value="1" onSelect="los_geht(this.value);">1</option>
   <option value="2" onSelect="los_geht(this.value);">2</option>
   <option value="3" onSelect="los_geht(this.value);">3</option>
   <option value="4" onSelect="los_geht(this.value);">4</option>
   <option value="5" onSelect="los_geht(this.value);">5</option>
   <option value="6" onSelect="los_geht(this.value);">6</option>
  </select>
 </body>
</html>

im IE nicht und im FF schon???