Hallo,
irgendwie verstehe ich Dein Problem nicht mehr. Versuch mal das folgende Beispiel:
<form action="">
<select class="typominitext" size=1 name="Auswahl" onchange="alert(this.form.Auswahl.options[this.form.Auswahl.options.selectedIndex].value)">
<option value="Wert1">Text1</option>
<option value="Wert2">Text2</option>
<option value="Wert3">Text3</option>
</select>
</form>
über ...option[...selectedIndex].value wird der Wert angezeigt.
Gruß, Jürgen