$(
"#selectid option:selected"
).text()
//selectid下拉框的id
//另一个方法
"#selectid"
).find(
"option:selected"
).text();