
function Subject_UserContactForm(source, arguments)
{	
	var oObject = document.getElementById(source.controltovalidate);

    if (oObject.selectedIndex != "0")	
	    arguments.IsValid = true;
        
	else	
        arguments.IsValid = false;	
        
    return;
}