function jumpToDate(baseUrl)
{
	var date = document.getElementById('date');
	var location = document.getElementById('location');
	
	
	dateValue = date.options[date.selectedIndex].value;
	locationValue = location.options[location.selectedIndex].value;
	
	window.location.href = baseUrl + '&l=' + locationValue + '&d=' + dateValue;
	
	return true;
}