jquery
テキスト値を取得 $("#select1 option:selected").text();
値を取得 $("#select1 option:selected").val();
js
var obj = document . getElementById(”selectId”); // ロケーション ID
varindex = obj.selectedIndex; // テキスト値を取得します
var text = obj.options[index].text;値を取得します
var value = obj.options[index].value
;