jquery get options selected 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
var conceptName = $('#aioConceptName').find(":selected").val();