hi,
hatte zufaellig mit was aehnlichen zu tun und bin auf folgende (wohl elegantere) Funktion gekommen:
function resetForm (f)
{
for (i = 0; i < document.form1.auswahl.length; i++)
{
f.auswahl.options[i].defaultSelected = false;
}
f.auswahl.options[0].defaultSelected = true;
}
der Aufruf erfolgt so:
<form name="form1" onReset="resetForm(this)">
mfG,
steckl