$(function(){
	$("select").sb({ 
			ddCtx: function() { return $(this).closest("form"); } 
	});
	
	$("#booker form").submit(function() {
		var location = $('.selectbox .display .value').text();
		$(this).attr('action', location);
	});
});
