get option name not value when select dropdown in jquery code example
Example 1: get selected option value jquery
$("#vacc_wellness_agegroups option:selected").val();
Example 2: select box get value
// reference to 'scripts' select list
// used throughout the examples below
var sel = document.getElementById('scripts');
// display value property of select list (from selected option)
console.log( sel.value );