function formReset()
		{
		var x=document.shopping_list
		 if (x.country.value=="00")
		 {
		 	alert("Please Choose the Shipping Country");
			x.country.focus()
			return false;
		}
			BOOK1=69
			BOOK2=49.5
			BOOK6=40
			BOOK12=35
			PRIZE1=49
			PRIZE2=39.5
			PRIZE6=33
			PRIZE12=26.5
            BIO=25
            PLATINUM=99
			
			//book shipping fee for US
			BSHIP1=10
			BSHIP6=6
			BSHIP12=6
			
			//book shipping fee for Canada and Mexico
			BSHIP1_CN_MX=18
			BSHIP6_CN_MX=18
			BSHIP12_CN_MX=18
			
			//book shipping fee for Other Country
			BSHIP1_IN=28
			BSHIP6_IN=28
			BSHIP12_IN=28

			//plaque shipping fee for US
			PSHIP1=10
			PSHIP2=10
			PSHIP3=10
			
			//plaque shipping fee for Canada and Mexico
			PSHIP1_CN_MX=18
			PSHIP2_CN_MX=18
			PSHIP3_CN_MX=18
			
			//plaque shipping fee for Other Country
			PSHIP1_IN=28
			PSHIP2_IN=28
			PSHIP3_IN=28

			//platinum shipping fee for us
			PTSHIP=18
			//platinum shipping fee for us
			PTSHIP_CN_MX=30
			//platinum shipping fee for us
			PTSHIP_IN=55
			
			var quantity=x.book_quantity.value

			var bprice=BOOK1
			var pprice=PRIZE1

			var b_ship1=BSHIP1
			var b_ship6=BSHIP6
			var b_ship12=BSHIP12

			var p_ship1=PSHIP1
			var p_ship2=PSHIP2
			var p_ship3=PSHIP3
			
			var ptship=PTSHIP

			var bk_total, pz_total, bship, pship

			 
			if ((x.country.value=="CA") || (x.country.value=="MX") )
			{
			   
				b_ship1=BSHIP1_CN_MX
				b_ship6=BSHIP6_CN_MX
				b_ship12=BSHIP12_CN_MX
				p_ship1=PSHIP1_CN_MX
				p_ship2=PSHIP2_CN_MX
                p_ship3=PSHIP3_CN_MX
                ptship=PTSHIP_CN_MX
			}
			if (x.country.value=="OTHER")
			{
			    
				b_ship1=BSHIP1_IN
				b_ship6=BSHIP6_IN
				b_ship12=BSHIP12_IN
				p_ship1=PSHIP1_IN
				p_ship2=PSHIP2_IN
                p_ship3=PSHIP3_IN
                ptship=PTSHIP_IN
			}

			if (quantity < 0)
			{
				alert("Quantity should greater than or equal zero. Please re-enter your quantity!")
				x.book_quantity.focus()
				bk_total=BOOK1
				
			}
			else
			{
				if (quantity==1)
				{
					bprice=BOOK1 * quantity
					x.book_unit.value=BOOK1
									
			//document.getElementById("book_unit_price").innerHTML="<strong class='style8'>$"+BOOK1+"</strong>
			//<span class='style9'> (&euro;"+Math.round(BOOK1*0.63)+"&pound;"+Math.round(BOOK1*0.50)+")</span>";	
			
			document.getElementById("book_unit_price").innerHTML="<strong class='style8'>$"+BOOK1+"</strong><span class='style9'> (&euro;"+Math.round(BOOK1*0.63)+" &pound;"+Math.round(BOOK1*0.50)+")</span>";	
			
			
			
			
				}
				if(quantity>=2 && quantity<=5)
				{
					bprice=BOOK2 * quantity
					x.book_unit.value=BOOK2
					document.getElementById("book_unit_price").innerHTML="<strong class='style8'>$"+BOOK2+"</strong><span class='style9'> (&euro;"+Math.round(BOOK2*0.63)+" &pound;"+Math.round(BOOK2*0.50)+")</span>";	
					
					
					


				}
				if(quantity>=6 && quantity<=11)
				{
					bprice=BOOK6 * quantity
					x.book_unit.value=BOOK6
					document.getElementById("book_unit_price").innerHTML="<strong class='style8'>$"+BOOK6+"</strong><span class='style9'> (&euro;"+Math.round(BOOK6*0.63)+" &pound;"+Math.round(BOOK6*0.50)+")</span>";	



				}
				if(quantity>=12)
				{
					bprice=BOOK12 * quantity
					x.book_unit.value=BOOK12
				document.getElementById("book_unit_price").innerHTML="<strong class='style8'>$"+BOOK12+"</strong><span class='style9'> (&euro;"+Math.round(BOOK12*0.63)+" &pound;"+Math.round(BOOK12*0.50)+")</span>";	
					
				}

				if(quantity>=0 && quantity<=5)
				{
					bship=b_ship1 *quantity
				}
				if (quantity<=11 && quantity>=6)
				{
					bship=b_ship6 *quantity
				}
				if (quantity>=12)
				{
					bship=b_ship12 *quantity
				}
				if (quantity==0)
				{
					bk_total=0
				}
				else
				{
    				bk_total=bprice + bship
				}

			}

//calculate total amount for PRIZE
			quantity=x.prize_quantity.value
			if (quantity < 0)
			{
				alert("Quantity should greater than or equal zero. Please re-enter your quantity!")
				x.prize_quantity.focus()
				x.pz_total.value=PRIZE1				
			}
			else
			{
    			if (quantity==1)
				{
					pprice=PRIZE1 * quantity
					x.prize_unit.value=PRIZE1
					
					document.getElementById("plaque_unit_price").innerHTML="<strong class='style8'>$"+PRIZE1+"</strong><span class='style9'> (&euro;"+Math.round(PRIZE1*0.63)+" &pound;"+Math.round(PRIZE1*0.50)+")</span>";	
					
				
				}
				if(quantity>=2 && quantity<=5)
				{
					pprice=PRIZE2 * quantity
						x.prize_unit.value=PRIZE2
					
document.getElementById("plaque_unit_price").innerHTML="<strong class='style8'>$"+PRIZE2+"</strong><span class='style9'> (&euro;"+Math.round(PRIZE2*0.63)+" &pound;"+Math.round(PRIZE2*0.50)+")</span>";	
				}
				if(quantity>=6 && quantity<=11)
				{
					pprice=PRIZE6 * quantity
						x.prize_unit.value=PRIZE6
	document.getElementById("plaque_unit_price").innerHTML="<strong class='style8'>$"+PRIZE6+"</strong><span class='style9'> (&euro;"+Math.round(PRIZE6*0.63)+" &pound;"+Math.round(PRIZE6*0.50)+")</span>";	
				}
				if(quantity>=12)
				{
					pprice=PRIZE12 * quantity
						x.prize_unit.value=PRIZE12
	document.getElementById("plaque_unit_price").innerHTML="<strong class='style8'>$"+PRIZE12+"</strong><span class='style9'> (&euro;"+Math.round(PRIZE12*0.63)+" &pound;"+Math.round(PRIZE12*0.50)+")</span>";	
				}
				pship=p_ship1 *quantity
/*
				if(pprice<50)
				{
					pship=p_ship1
				}
				if (pprice<80 && pprice>=50)
				{
					pship=p_ship2
				}
				if (pprice>=80)
				{
					pship=p_ship3
				}
*/
				if (quantity==0)
				{
					pz_total=0
				}
				else
				{
					pz_total=pprice+pship
				}

			}

//calculate total amount for BIO
			price=BIO
			quantity=x.bio_quantity.value
			if (quantity < 0)
			{
				alert("Quantity should greater than or equal zero. Please re-enter your quantity!")
				x.bio_quantity.focus()
				bio_total=x.bio_total.value.substr(1)
			}
			else
			{
              if (x.book_quantity.value<1 && x.bio_quantity.value>0)
              {
				alert("You can not order a bio without purchasing a book!")
                x.bio_quantity.value=1
                x.book_quantity.value=1
				x.book_quantity.focus()
              }
        	   var bio_total=price * quantity
			}


//calculate total amount for PLATINUM
			price=PLATINUM
			quantity=x.platinum_quantity.value
			if (quantity < 0)
			{
				alert("Quantity should greater than or equal zero. Please re-enter your quantity!")
				x.platinum_quantity.focus()
				platinum_total=x.platinum_total.value.substr(1)
			}
			else
			{
        	   var platinum_total = (price+ptship) * quantity
			}

			var amount= bk_total + pz_total + bio_total + platinum_total

				x.book_amount.value=bk_total
				
				document.getElementById("book_total").innerHTML="<strong class='style8'>$"+bk_total+"</strong><span class='style9'> (&euro;"+Math.round(bk_total*0.63)+" &pound;"+Math.round(bk_total*0.50)+")</span>";	
				
							
x.prize_amount.value=pz_total;
document.getElementById("plaque_total").innerHTML="<strong class='style8'>$"+pz_total+"</strong><span class='style9'> (&euro;"+Math.round(pz_total*0.63)+" &pound;"+Math.round(pz_total*0.50)+")</span>";	


x.prize_amount.value=pz_total;

document.getElementById("bio_total").innerHTML="<strong class='style8'>$"+bio_total+"</strong><span class='style9'> (&euro;"+Math.round(bio_total*0.63)+" &pound;"+Math.round(bio_total*0.50)+")</span>";	


x.bio_amount.value=bio_total;

	document.getElementById("platinum_total").innerHTML="<strong class='style8'>$"+platinum_total+"</strong><span class='style9'> (&euro;"+Math.round(platinum_total*0.63)+" &pound;"+Math.round(platinum_total*0.50)+")</span>";			
			
		
			

x.platinum_amount.value=platinum_total;
			
			
			x.amount.value=amount;
			document.getElementById("total").innerHTML="<strong class='style8'>$"+amount+"</strong><span class='style9'> (&euro;"+Math.round(amount*0.63)+" &pound;"+Math.round(amount*0.50)+")</span>";		
			
			return true;

		}