how to get a value from an option select?

how to get a value from an option select?

get value of an option select from my website here:  website

When selecting a town from the top left drop down. nothing is being alerted?!
  1. $('.townslist select').change(function() {
  2. alert("Selected");
  3. var town = $(this).val();
  4.   alert( "Selected " + town );
  5. });