// JavaScript Document

function checkType() {
	type = document.getElementById("elementType");
	start = document.getElementById("eventStarts");
	if (type.options[type.selectedIndex].value == 2) start.style.display = "block";
	else start.style.display = "none";
	return true;
} // end function checkType()
		