//onChange event handler for selectLocation
YAHOO.util.Event.addListener('selectLocation', 'change', changedLocation);
function changedLocation(e)
{
	var selected = YAHOO.entropico.getSelectedValue('selectLocation');
	if(selected.value != '-1')
	{
		window.location = '/booking/'+selected.value;
	}
}