jquery get text of selected option text code example
Example 1: how to get the selected text of dropdown in jquery
BY LOVE
$("#Id option:selected").text()
Example 2: jquery get dropdown list selected value
$('#dropDownId').val();
BY LOVE
$("#Id option:selected").text()
$('#dropDownId').val();