Aber sobald ich das Ganze in einem anderen Formular stehen habe funktioniert es nicht, z.B.:
<html><head><title></title>
<script language="JavaScript">
function textValue()
{
var stationInteger, stationString;
stationInteger=document.stationform.stationselect.selectedIndex;
stationString=document.stationform.stationselect.options[stationInteger].text;
document.stationform.stationtext.value = "Das Ziel lautet: " + stationString +"!";
}
</script></head><body><form>
<div align="center">
<form name="stationform">
<select name="stationselect" onChange="textValue()" size="1">
<option>Feedback
<option>Gästebuch
<option>Links
<option>Spiele
</select><br><br>
<input type="text" name="stationtext" value size="40" maxlength="35">
</form>
</div></form></body></html>
und das ist genau mein Problem :o(