find dropdown selected value in jquery from tr in js code example
Example 1: how to get the selected text of dropdown in jquery
BY LOVE
$("#Id option:selected").text()
Example 2: jquery: get selected option of the drop down list
$('#ddlID').val();
$('#ddlID').text();