<!-- hide it

// checks for NZ agent in applicant type - sets applicantProdCo to N/A

// START checkForAgent
// triggered by an  onBlur="checkForAgent(this);" on a form field
function checkForAgent(field) 
{
fieldValue = field.value;
if (fieldValue=="Independent NZ agent/fixer")
	{
	//alert(fieldValue + " is Agent");
	document.form2.appl_prod_company_req.value = 'Not applicable';
	//document.form2.appl_prod_company_req.type = 'hidden';	

	div1 = document.getElementById('prodco');
	div1.innerHTML = " &nbsp;&nbsp;you don't need to fill this field out:";
	//text1 = document.getElementById('appl_prod_company_req');
	//text1.type = "hidden";		
	}
}
// END checkForAgent



// -->

