试试<form name="xx">
<select></select>
<select></select>
<select></select>
<select></select>
<select></select>
<input type="text" name="txt1">
<input type="button" value="add to list" onclick="addToList(this.form, this.form.txt1.value);">
</form>
<script language="javascript">
function addToList(objForm,strValue)
{
  strValue = strValue.replace(/^\s+|\s*$/g,"");
  if (strValue.length == 0)
return;  var elements = objForm.elements;  for (var i=0; i < elements.length; i++)
  {
if (elements[i].type.indexOf("select") == 0)
  {
var opt = new Option(strValue, strValue);
elements[i].options.add(opt);
}
  }
}
</script>