以下代码只支持IE,请问如何修改才能同时支持FF?小弟不才,请指教!  function   setTo1(){   
  var   AddNode,place;   
    
  place   =   document.getElementById("select1").selectedIndex   
  AddNode   =   document.getElementById("select1").children(place)   
  document.getElementById("select1").removeChild(document.getElementById("select1").children(place));   
  document.getElementById("select2").appendChild(AddNode)   ;   
    
  }   
  function   setTo2(){   
  var   AddNode,place;   
    
  place   =   document.getElementById("select2").selectedIndex   
  AddNode   =   document.getElementById("select2").children(place)   
  document.getElementById("select2").removeChild(document.getElementById("select2").children(place));   
  document.getElementById("select1").appendChild(AddNode)   ;