//获取被选中的option标签选项
alert(obj.selectedIndex);
//获取被选中的option标签的value
var value = obj.options[obj.selectedIndex].value;
alert(value);