Hallo Tausch!
Vielen Dank für die schnelle Antwort, aber ich bin zu blöd!
(Oder liegt an der mangelnden Erfahrung mit JAVA-Scipt)
Nachfolgend mal der Code.
Woran liegts?
Danke Gernot
Alternative 1
<html>
<head>
<title>Test Formular</title>
</head>
<body>
<form method="POST" name="Formular" action="cgi-bin/formtest.pl">
<p>
<select size="1" name="Liste1">
<option onClick="document.Formular.Liste2.options[0].selected=true;">Auswahl1</option>
<option onClick="document.Formular.Liste2.options[1].selected=true;">Auswahl2</option>
<option onClick="document.Formular.Liste2.options[2].selected=true;">Auswahl3</option>
</select>
</p>
<p>
<select size="1" name="Liste2">
<option>Auswahl1</option>
<option>Auswahl2</option>
<option>Auswahl3</option>
</p>
<p><input type="submit" value="Abschicken" name="Button1"><input type="reset" value="Zurücksetzen" name="Button2"></p>
</form>
</script>
</body>
</html>
Altennative 2
<html>
<head>
<title>Test Formular</title>
</head>
<body>
<script language="JavaScript">
function check()
{
for(i = 0; i < document.Testform.Auswahl.length; i++)
if(document.Formular.Liste1.options[i].defaultSelected == true)
document.Formular.Liste2.options[i].selected=true;
}
</script>
<form method="POST" name="Formular" action="cgi-bin/formtest.pl">
<p>
<select size="1" name="Liste1" onClick="check()">
<option>Auswahl1</option>
<option>Auswahl2</option>
<option>Auswahl3</option>
</select>
</p>
<p>
<select size="1" name="Liste2">
<option>Auswahl1</option>
<option>Auswahl2</option>
<option>Auswahl3</option>
</p>
<p><input type="submit" value="Abschicken" name="Button1"><input type="reset" value="Zurücksetzen" name="Button2"></p>
</form>
</script>
</body>
</html>