function mySelect(){
var mysel = document.getElementById(“select1”);
var txt = mysel.options[mysel.options.selectedIndex].text;//获取下拉列表显示的文本
var valu = mysel.options[mysel.options.selectedIndex].value;//获取下拉列表的值
//也可以用
mysel.options[mysel.selectedIndex].value和mysel.options[mysel.selectedIndex].text
}