Как получить выбранный текст выпадения в jQuery
BY LOVE
$("#Id option:selected").text()
Precious Pigeon
BY LOVE
$("#Id option:selected").text()
$('#id').children(':selected').text();
$('#id option:selected').text()
$("#city_id option:selected").text();
$("#mySelect option:selected").html();