How to determine what is selected in the drop down? In Javascript.
Use the value property of the element. For example:
value
var value = document.getElementById('your_select_id').value; alert(value);