jquery how to read select option selected value code example
Example 1: jquery selected option text
$( "#myselect option:selected" ).text();
Example 2: get selected option value jquery
$("#vacc_wellness_agegroups option:selected").val();
$( "#myselect option:selected" ).text();
$("#vacc_wellness_agegroups option:selected").val();