select 的操作
a, 清空options
selectObj.options.length = 0; (此方法在ff,ie下都适用)
b, 添加一个新option
selectObj.add(new Option(label,value));
c, 删除options集合中指定的一项option
selectObj.remove(index);
d, 获取当前选定的option的真实值value或lable
selectObj.options.[index].value 或 selectObj.options.[index].text (注意:这里最好用[],如果用() 在ie下能正常工作,ff下则不行, []则都能正常工作)