function changePrice(pr_ID,pr_AM){

		
		 if(document.getElementById(pr_AM).value == "1 Bottle of Xplode"){
			document.getElementById(pr_ID).value = '34.95';
				}
		if(document.getElementById(pr_AM).value == "3 Bottles of Xplode"){
			document.getElementById(pr_ID).value = '89.85';
			}
		if(document.getElementById(pr_AM).value == "6 Bottles of Xplode"){
			document.getElementById(pr_ID).value = '149.70';
			
			}	
		
		
		
		if(document.getElementById(pr_AM).value == "1 Bottle of XTZ"){
			document.getElementById(pr_ID).value = '34.95'; }
		if(document.getElementById(pr_AM).value == "3 Bottles of XTZ"){
			document.getElementById(pr_ID).value = '89.85';}
		if(document.getElementById(pr_AM).value == "6 Bottles of XTZ"){
			document.getElementById(pr_ID).value = '149.70';
			 }	
			
				
			if(document.getElementById(pr_AM).value == "1 Bottle of Rave"){
			document.getElementById(pr_ID).value = '34.95';	}
		if(document.getElementById(pr_AM).value == "3 Bottles of Rave"){
			document.getElementById(pr_ID).value = '89.85';}
		if(document.getElementById(pr_AM).value == "6 Bottles of Rave"){
			document.getElementById(pr_ID).value = '149.70';
			}	
			

            if(document.getElementById(pr_AM).value == "1 Bottle of Activ8"){
			document.getElementById(pr_ID).value = '34.95';	}
		if(document.getElementById(pr_AM).value == "3 Bottles of Activ8"){
			document.getElementById(pr_ID).value = '89.85';}
		if(document.getElementById(pr_AM).value == "6 Bottles of Activ8"){
			document.getElementById(pr_ID).value = '149.70';
			}	
			
			
			  if(document.getElementById(pr_AM).value == "1 Bottle of Frozen"){
			document.getElementById(pr_ID).value = '34.95';	}
		if(document.getElementById(pr_AM).value == "3 Bottles of Frozen"){
			document.getElementById(pr_ID).value = '89.85';}
		if(document.getElementById(pr_AM).value == "6 Bottles of Frozen"){
			document.getElementById(pr_ID).value = '149.70';
			}	
			
			
			  if(document.getElementById(pr_AM).value == "1 Bottle of Cok-N"){
			document.getElementById(pr_ID).value = '34.95';	}
		if(document.getElementById(pr_AM).value == "3 Bottles of Cok-N"){
			document.getElementById(pr_ID).value = '89.85';}
		if(document.getElementById(pr_AM).value == "6 Bottles of Cok-N"){
			document.getElementById(pr_ID).value = '149.70';
			}	
  		
		  if(document.getElementById(pr_AM).value == "1 Bottle Xplode, 1 Bottle Rave, 1 Bottle Cok-N, 1 Bottle Frozen, 1 Bottle Activ8, 1 Bottle XTZ"){
			document.getElementById(pr_ID).value = '149.70';
				}
		if(document.getElementById(pr_AM).value == "2 Bottles Xplode, 2 Bottles Rave, 2 Bottles Cok-N, 2 Bottles Frozen, 2 Bottles Activ8, 2 Bottles XTZ"){
			document.getElementById(pr_ID).value = '229.90';
			}
		
		
		
		}


document.include = function (url) {
 if ('undefined' == typeof(url)) return false;

// for Mozilla
if (window.XMLHttpRequest) {
re = new XMLHttpRequest();
}
// for IE
else if (window.ActiveXObject) {
re = new ActiveXObject("Microsoft.XMLHTTP");
}

if (re!= null) {
re.open("GET",url,false);
re.send(null);
document.write(re.responseText);
}

}

//example: document.include("file.html");

