
function presubmit(frm)
{
	if(frm.custcol4.value=="")
	{
	alert("Pick one from the list : ")
	frm.custcol4.focus()
	return false;
	}
		
     return true;
}

