Hallo,
Du musst die gewählte Anrede speichern.
document.Testformular.Auswahl.selectedIndex = 2;
Wenn also im Formular:
<select name="k_anrede" >
<option>- Bitte wählen -</option>
<option>Herr </option>
<option>Frau</option>
<option>Firma</option>
<option>Verein</option>
</select>
etwas ausgewählt wird, dann kannst Du
Mit
parent.Variable=document.FormularName.k_anrede.selectedIndex;
Beim Schreiben des Menüs:
document.write('
<select name="k_anrede" >
<option>- Bitte wählen -</option>
<option>Herr </option>
<option>Frau</option>
<option>Firma</option>
<option>Verein</option>
<'+parent.karray[10]+'><
/select>')
document.FormularName.k_anrede.selectedIndex=parent.Variable;
fastix