/*******************************************************************************************************************************
	validateForm()
	
	Description:
	Test the given input to determine if all required fields have been entered correctly.
*******************************************************************************************************************************/
function validateForm(obj)
{
var error = "";

	if ((obj.mostimportant.value == 0) || (obj.rateyourcredit.value == 0))
		{
		  error += "Please make a selection in both dropdown boxes." + "\n";
		}
	
// ERROR -------------------------------
if (error != "")
  { 
    alert(error);
    return (false);
  } else {
    return (true);
  }

}
