Jquery getting selected value from combo box code example
Example 1: jquery get selected option value
$("select.your-select").change(function(){
$(this).children("option:selected").val();
});
Example 2: how To fetch the index of dropdown using jquery
BY LOVE
$('#ddlPartnerType option:selected').index()