jquery to get text from select option code example
Example 1: how to get the selected text of dropdown in jquery
BY LOVE
$("#Id option:selected").text()
Example 2: jquery selected option text
$( "#myselect option:selected" ).text();
BY LOVE
$("#Id option:selected").text()
$( "#myselect option:selected" ).text();