function validate_form() {

	if (document.report_form.ReasonID.options[document.report_form.ReasonID.selectedIndex].value == 0) {

		alert("Please tell us why you are reporting this clip.");

		return false;

	} else {

		return true;

	}

}

