function toolscontext_local_validate(resFm) {
	var resEls = resFm.elements;
	var pickupCity = resEls['vehiclereservation.dp.pickupCity.value'];
	if (!pickupCity.value) {
		alert('Please select a city for your pickup location.');
		return false;
	}
}