selecting text jquery code example
Example 1: jquery selected option text
$("#mySelect option:selected").html();
Example 2: jquery select option by text
$("#myDropdown option:contains(Option 2)").attr('selected', 'selected');
$("#mySelect option:selected").html();
$("#myDropdown option:contains(Option 2)").attr('selected', 'selected');