<html>
<head>
</head>
<body>
<form name="form1">
<select name="select1" onchange="document.form1.desc1.value=this.value">
<option value="">--Select--</option>
<option value="this value is true">True</option>
<option value="this value is false">False</option>
<option value="this value is other">Other</option>
</select>
<input type="text" name="desc1" size="30">
</form>
</body>
</html>



