function changeIt1(selValue){ 
if (selValue == "6.99") 
   { 
   document.choc1.item_name.value = "1/2 lbs. Chocolate Gift Box";  
   } 
if (selValue == "12.99") 
   { 
   document.choc1.item_name.value = "1 lbs. Chocolate Gift Box";  
   } 
if (selValue == "25.99") 
   { 
   document.choc1.item_name.value = "2 lbs. Chocolate Gift Box"; 
   } 
}