function CalculatePrice(myForm)
{
  
  var totPrice = 14.95;
  var isAutographed = false;
 
  if(myForm.item_selection_1.selectedIndex == 0)
  {
     totPrice = 14.95;
	 isAutographed = false;
  }
  else if(myForm.item_selection_1.selectedIndex == 1)
  {
     totPrice = 24.95;
	 isAutographed = true;
  }
  else
  {
     alert('Invalid Item');
  }
  
  
  
  if(myForm.shipGrp[0].checked)
  {
     totPrice = totPrice + 5;
  }
  else
  {
     totPrice = totPrice + 15;
  }
  if(isAutographed)
  {
     myForm.item_option_price_2.value = totPrice;
	 
  }
  else
  {
     myForm.item_option_price_1.value = totPrice;
	 
  }
  myForm.totPrice.value = totPrice;
  



}