how to get selected option of select in jquery code example
Example 1: jquery get selected option value
$("select.your-select").change(function(){
$(this).children("option:selected").val();
});
Example 2: get selected option value jquery
$("#vacc_wellness_agegroups option:selected").val();