<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</title>
<script language="javascript">
function addItem(obj){
var optionObj = document.createElement("OPTION");
obj.options.add(optionObj);
optionObj.innerText = itemName.value;
optionObj.value = "2";
}
function removeItem(obj){
obj.remove(obj.selectedIndex)
}
</script>
</head>
<body>
<table width="300" border="1">
<tr>
<td>
<select name="selectObj" size="5" style=" width:100%">
</select>
</td>
</tr>
<tr>
<td><input type="text" name="itemName" style="width:100% "></td>
</tr>
<tr>
<td><input type="button" onClick="addItem(selectObj)" name="Submit" value="add Item">
<input type="button" onClick="removeItem(selectObj)" name="Submit2" value="remove Item"></td>
</tr>
</table>
</body>
</html>