15
Dec
Learn how to get Jquery dropdown value and selected option text
$('#dropdown_id').val();
this will give you the selected value of the drop down element.
And use this to get the selected options text.
$('#dropdown_id option:selected').text();