<html>
<head>
<title>无标题文档</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<script language="JavaScript">
function selectedmode(){
var selectObj = document.form1.select1 ;
document.form1.textfield.value=selectObj.options(selectObj.selectedIndex).text ;
}
</script>
</head><body bgcolor="#FFFFFF" text="#000000">
<form name="form1" method="post" action="">
<input type="text" name="textfield">
  <select name="select1" OnChange=selectedmode()>
    <option value="1">好</option>
    <option value="0">不好</option>
  </select>
</form>
</body>
</html> 
 
 
 
 
试试。