第一个实现方法:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>无标题文档</title>
</head>
<body>
<form name="form1" method="post" action="">
<label>
<select name="select"
id="b" onChange="document.form1.a.value = b.value" >
<option value="">请选择</option>
<option value="60">工人</option>
<option value="70">经理</option>
</select>
</label>
<label>
<input name="a" type="text" id="a">
</label>
</form>
</body>
</html>