function price(val,pddis){
        
        if(document.theform.chk.checked) 
		{
		   var r=confirm("Click OK to confirm that you want to continue with Automatic Sweet Alexis and automatically receive your order every month.");
		    if (r==true)
             { 
		       var dis= val-(val*(pddis/100));
		       document.theform.pri.value= (dis);
		     } 
		     else
		     {
		       document.theform.pri.value=(val);	 
		       var x=document.theform.chk;
               x.checked=false;
		     } 
		 
	    } else
		 {
		 document.theform.pri.value=(val);		
		 } 				 
}
