   function _listClear(listObj){
      while(listObj.options.length>0)
          listObj.remove(0);
   }
      
   function _listAddOption(listObj,text,value){
       var len=listObj.options.length;
       var opt = new Option(text, value);
       listObj.options[len] = opt;
   }
   
  function __isExistInList(str,listId){
     var result=false;
     var list=document.getElementById(listId);
     for(var m=0;m<list.options.length;m++){
         var _tempV=list.options[m].value;
         if(_tempV==str){
            result=true;
            break; 
         }
     }
     return result;
     
  }
  function __selectAll(listId){
     var list=document.getElementById(listId);
     for(var m=0;m<list.options.length;m++){
        list.options[m].selected=true;        
     } 
  }
 


