Try the code given below for dropdown options:
var conceptName = $('#aioConceptName').find(":selected").text();
Here, the val() function doesn't do the trick is because clicking an option doesn't change the value of the dropdown --it is just used to add the: selected property to the selected option which is a child of the dropdown.