<!--Hide from old browsers
function getpriceF()
{	
	itemprice = "00.00"
	var CatA = "22.00"
	var CatB = "25.00"
	var CatC = "10.00"
	var CatD = "25.00"
	var CatE = "25.00"
	var CatF = "15.00"
	

		
	whatItem=document.addit_11.itemname.selectedIndex     //What item selected FOR EARFLAPS?
	      if ((document.addit_11.itemname.selectedIndex == 9) ||
	          (document.addit_11.itemname.selectedIndex == 9))
	          {
	              document.addit_11.itemprice.value = CatA;
	              alert("Price is $" + document.addit_11.itemprice.value +  "  each for this item.")
	              alert("Your are ordering " + document.addit_11.itemquant.value + " " + document.addit_11.itemname.options[whatItem].value);
	              
	          }
	              
	       else if
	          
	          ((document.addit_11.itemname.selectedIndex == 1) ||
	           (document.addit_11.itemname.selectedIndex == 1) ||
	           (document.addit_11.itemname.selectedIndex == 2) ||
	           (document.addit_11.itemname.selectedIndex == 2))
	           {
	              document.addit_11.itemprice.value = CatB;
	              alert("Price is $" + document.addit_11.itemprice.value +  "  each for this item.")
	              alert("Your are ordering " + document.addit_11.itemquant.value + " " + document.addit_11.itemname.options[whatItem].value);
	           }
	         else {}	 
}

function getpriceNF()
{
	
	itemprice = "00.00"
	var CatA = "25.00"
	var CatB = "25.00"
	var CatC = "10.00"
	var CatD = "25.00"
	var CatE = "25.00"
	var CatF = "15.00"	
	
	        
	 whatItem2=document.addit_12.itemname.selectedIndex     //What item selected FOR NO EARFLAPS?
	      if ((document.addit_12.itemname.selectedIndex == 1) ||
	          (document.addit_12.itemname.selectedIndex == 1) ||
	          (document.addit_12.itemname.selectedIndex == 2))
	          {
	              document.addit_12.itemprice.value = CatA;
	              alert("Price is $" + document.addit_12.itemprice.value +  "  each for this item.")
	              alert("Your are ordering " + document.addit_12.itemquant.value + " " + document.addit_12.itemname.options[whatItem2].value);
	          }
	          else {}
	              
}		  	
			
//End Hiding from old browsers-->		

