function findEvents(theForm)
{
	/* Get selected value for Type dropdown */
	var selectedType = theForm.form.elements["event-type"].selectedIndex;
	var theType = theForm.form.elements["event-type"].options[selectedType].value;
	
	/* Get selected value of Area dropdown */
	var selectedArea = theForm.form.elements["area"].selectedIndex;
	var theArea = theForm.form.elements["area"].options[selectedArea].value;
	
	var domain = 'http://www.sanjose.com'; /* set calendar domain */
	var calendarURL;
	
	/* Create url path to SJ calendar based on selected items */
	/* ------------------------ */
	/* if South Bay is selected */
	if (selectedArea == 0){
		/* if all events selected */
		if (selectedType == 0){
			calendarURL = domain + '/calendar/';
		}
		else {calendarURL = domain + '/' + theType + '/calendar/';}
	} 
	else {
		/* if all events selected */
		if (selectedType == 0){
			calendarURL = domain + '/calendar/south-bay/' + theArea;
		}
		else {calendarURL = domain + '/' + theType + '/calendar/south-bay/' + theArea;}
	}
	
	/* Redirect visitor to created path */
	window.open(calendarURL);
	return false;
}