// Signup Form Field Validation Script

function checkForm()
{

if(document.colorSize.dim1.selectedIndex==0){
alert("Please Select a Color");
return false;
}

if(document.colorSize.dim2.selectedIndex==0){
alert("Please Select a Size");
return false;
}

}
