$(document).ready(function() {
	$('#townForm select').change(function(e) {
		if($(this).val() != '') {
			$('#townForm').submit();
		}
	});	
});
