方法一:

方法二:
获得select的选定项的text属性
     document.all["city"].options[document.all["city"].selectedIndex].text
js:获得select的选定项的value属性
 document.all["city"].options[document.all["city"].selectedIndex].value

清空select 选项
this.options.length = 0;
清空select 选项除了第一项
 this.options.length=1;