function   addOption(str){   
  var   o=document.createElement("option");   
  o.text=str;   
  o.value=str; 
  o.selected=true  
  document.all.TitleMain.add(o);   
  }   
试试