.on change get value

JavaScript
$('select').on('change', function() {
  alert( this.value );
});
Source

Also in JavaScript: