<html><head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>新建网页 1</title>
</head><body>
<input type="button" id="btn" onclick="addItem()">
<select id="slt">
</select>
<input type="text" id="txt">
<script language="javascript">
<!--
function addItem()
{
slt.options[slt.options.length] = new Option( txt.value,txt.value);
}
//-->
</script>
</body></html>