Juhuuu! Ich habs selber rausgefunden.
Wenn man in der Auswahl "Unterkategorie" IDs vergibt, kann man diese Stelle später ansprechen. So funktionierts:
<select name="Unterkategorie" size="1">
<option value="USW" id="u1">usw.</option>
<option value="USW2" id="u2">usw.</option>
</select>
function swap(){
if (MIPFormular.Produktbereich.options[MIPFormular.Produktbereich.selectedIndex].value == "Handhelds"){
MIPFormular.Unterkategorie.options[0].value = "Test";
document.getElementById("u1").firstChild.nodeValue = "Test";
MIPFormular.Unterkategorie.options[1].value = "2terTest";
document.getElementById("u2").firstChild.nodeValue = "2terTest";
}
}
Viele Grüße,
Richie