jquery using this to get dropdown selected value code example
Example 1: how to get the value of dropdown in jquery
BY LOVE
$('#ddlName option:selected').val();
Example 2: jquery: get selected option of the drop down list
$('#ddlID').val();
$('#ddlID').text();