get the selected value of select jquery code example
Example 1: get text in select jquery
$("#id option:selected").text();
Example 2: jquery get dropdown list selected value
$('#dropDownId').val();
$("#id option:selected").text();
$('#dropDownId').val();