$(document).ready(function() {
	$("#specials_destination_select").change(function() {
		if(!$(this).val()) return; 
		window.location.href = $(this).val();
	}); 
}); 
