<!-- Begin validation code

function checkoption(form) {
if (form.os0.selectedIndex == 0) {
	
		// no option selected
		alert('Please select a finish');
		form.os0.focus();
		return false;
	}
	
	// If any other value is selected,
        // it's ok to submit the form

	return true;
}

//  End -->