﻿function changepaintingtype(formobj) {

}
function BindFram2()
{
	document.shopForm.packing_method.options[0] = new Option("Not framed (rolled in a tube)","Not framed (rolled in a tube)");
		document.shopForm.packing_method.options[1] = new Option("Stretched canvas (gallery wrap)","Stretched canvas (gallery wrap)");
}
function BindFram1()
{
	document.shopForm.packing_method.options[0] = new Option("Not framed (rolled in a tube)","Not framed (rolled in a tube)");
}
function BindType7()
{
	     document.shopForm.painting_size.options[0] = new Option("12 x 16 Inches (30 x 40 cm)","12 x 16 Inches (30 x 40 cm)");
		document.shopForm.painting_size.options[1] = new Option("16 x 20 Inches (40 x 50 cm)","16 x 20 Inches (40 x 50 cm)");
		document.shopForm.painting_size.options[2] = new Option("20 x 24 Inches (50 x 60 cm)","20 x 24 Inches (50 x 60 cm)");
		document.shopForm.painting_size.options[3] = new Option("24 x 36 Inches (60 x 90 cm)","24 x 36 Inches (60 x 90 cm)");
		document.shopForm.painting_size.options[4] = new Option("30 x 40 Inches (75 x 100 cm)","30 x 40 Inches (75 x 100 cm)");
		document.shopForm.painting_size.options[5] = new Option("36 x 48 Inches (90 x 120 cm)","36 x 48 Inches (90 x 120 cm)");
		document.shopForm.painting_size.options[6] = new Option("48 x 72 Inches (120 x 180 cm)","48 x 72 Inches (120 x 180 cm)"); 
}
function BindFigures2()
{
	    var max_num_of_figures=2;
        for (i=7;i>=0;i--)
		{
			document.shopForm.painting_subjects_type.options[i] = null;
		}
		
		for(j=1;j<=max_num_of_figures;j++)
		{
		   document.shopForm.painting_subjects_type.options[j-1]= new Option(j,j);
		}
}
function BindFigures1()
{
	 var max_num_of_figures=1;
        for (i=8;i>=0;i--)
		{
			document.shopForm.painting_subjects_type.options[i] = null;
		}
		document.shopForm.painting_subjects_type.options[0]= new Option("1","1");
}
function calculatePrice(formobj)
{

     
        //------处理用什么付费
        if (document.shopForm.currency.value=="1")
		{
			document.shopForm.price_currrency.value = "USD"
			document.shopForm.price_currrency2.value = "USD"
		}
		else if (document.shopForm.currency.value=="2")
		{
			document.shopForm.price_currrency.value = "EUR"
			document.shopForm.price_currrency2.value = "EUR"
		}
		else if (document.shopForm.currency.value=="3")
		{
			document.shopForm.price_currrency.value = "AUD"
			document.shopForm.price_currrency2.value = "AUD"
		}
		else if (document.shopForm.currency.value=="4")
		{
			document.shopForm.price_currrency.value = "CAD"
			document.shopForm.price_currrency2.value = "CAD"
		}
		else if (document.shopForm.currency.value=="5")
		{
			document.shopForm.price_currrency.value = "GBP"
			document.shopForm.price_currrency2.value = "GBP"
		}
		else if (document.shopForm.currency.value=="6")
		{
			document.shopForm.price_currrency.value = "JYP"
			document.shopForm.price_currrency2.value = "JYP"
		}

	//处理参数传递
	var BlueA;
	var BlueB;
	var BlueC;
	var BlueD;
	var BlueE;
	var BlueF;
	var BlueG;
	var BlueH;
	
    BlueA=document.shopForm.painting_type.options[document.shopForm.painting_type.selectedIndex].text;//
	BlueB=document.shopForm.painting_style.options[document.shopForm.painting_style.selectedIndex].text;//oil
	BlueC=document.shopForm.painting_size.options[document.shopForm.painting_size.selectedIndex].text;//
    BlueD=document.shopForm.painting_subjects_type.options[document.shopForm.painting_subjects_type.selectedIndex].text;//
    BlueE=document.shopForm.packing_method.options[document.shopForm.packing_method.selectedIndex].text;//
    BlueF=document.shopForm.currency.options[document.shopForm.currency.selectedIndex].text;//
    
    ///////////////////----------------------Oil Portrait, People (USD)--------------/////////////////////////////////
    //US-Oil-People
	
///---------Oil,line1----begin 63到103行
if(BlueA=="people" && BlueB=="oil" && BlueC=="12 x 16 Inches (30 x 40 cm)")
{
       
		BindFigures2();
		var max_Fram=2;
		for (i=1;i>=0;i--)
		{
			document.shopForm.packing_method.options[i] = null;
		}
		BindFram2()
		document.shopForm.painting_subjects_type.selectedIndex = BlueD-1;//size
		document.shopForm.painting_style.selectedIndex=0;//
		document.shopForm.painting_type.selectedIndex=1;
		if(BlueE=="Not framed (rolled in a tube)")
		{
			document.shopForm.packing_method.selectedIndex=0;
		}
		else
		{
			document.shopForm.packing_method.selectedIndex=1;
		}	
}
	
if(BlueA=="people" && BlueB=="oil" && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="U.S. Dollars")
{
    document.shopForm.price.value="139";
}

if(BlueA=="people" && BlueB=="oil" && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="U.S. Dollars")
{
    document.shopForm.price.value=139+89;
}

if(BlueA=="people" && BlueB=="oil" && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="U.S. Dollars")
{
    document.shopForm.price.value="181";
}

if(BlueA=="people" && BlueB=="oil" && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="U.S. Dollars")
{
    document.shopForm.price.value=181+89;
}
///---------Oil,line1----begin 63到103行
   
///---------Oil,line1----begin 105到148行
 if(BlueA=="people" && BlueB=="oil" && BlueC=="16 x 20 Inches (40 x 50 cm)")
    {
         var max_num_of_figures=3;
        for (i=7;i>=max_num_of_figures;i--)
		{
			document.shopForm.painting_subjects_type.options[i] = null;
		}
		for(j=1;j<=max_num_of_figures;j++)
		{
		     document.shopForm.painting_subjects_type.options[j-1]= new Option(j,j);
		}
		
		for (i=1;i>=0;i--)
		{
			document.shopForm.packing_method.options[i] = null;
		}
		BindFram2()
	    document.shopForm.painting_subjects_type.selectedIndex = BlueD-1;//size
		document.shopForm.painting_style.selectedIndex=0;//oil;charl;pencil
		document.shopForm.painting_type.selectedIndex=1;//Select;People;pet:house
		if(BlueE=="Not framed (rolled in a tube)")
		{
			document.shopForm.packing_method.selectedIndex=0;
		}
		else
		{
			document.shopForm.packing_method.selectedIndex=1;
		}	
    }
	      if(BlueA=="people" && BlueB=="oil" && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value="181";
   }
      if(BlueA=="people" && BlueB=="oil" && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value=181+99;
   }
      if(BlueA=="people" && BlueB=="oil" && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value="235";
   }
       if(BlueA=="people" && BlueB=="oil" && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value=235+99;
   }
      if(BlueA=="people" && BlueB=="oil" && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="3" && BlueE=="Not framed (rolled in a tube)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value="289";
   }
    if(BlueA=="people" && BlueB=="oil" && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="3" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value=289+99;
   }
///---------Oil,line1----begin 105到148行


     if(BlueA=="people" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)")
    {
         var max_num_of_figures=5;
        for (i=7;i>=max_num_of_figures;i--)
		{
			document.shopForm.painting_subjects_type.options[i] = null;
		}
		for(j=1;j<=max_num_of_figures;j++)
		{
		     document.shopForm.painting_subjects_type.options[j-1]= new Option(j,j);
		}

		var max_Fram=2;
		for (i=1;i>=0;i--)
		{
			document.shopForm.packing_method.options[i] = null;
		}
		BindFram2()
		document.shopForm.painting_subjects_type.selectedIndex = BlueD-1;//size
		document.shopForm.painting_style.selectedIndex=0;//oil;charl;pencil
		document.shopForm.painting_type.selectedIndex=1;//Select;People;pet:house
		if(BlueE=="Not framed (rolled in a tube)")
		{
			document.shopForm.packing_method.selectedIndex=0;
		}
		else
		{
			document.shopForm.packing_method.selectedIndex=1;
		}	
    }
     if(BlueA=="people" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)")
    {
         var max_num_of_figures=7;
        for (i=7;i>=max_num_of_figures;i--)
		{
			document.shopForm.painting_subjects_type.options[i] = null;
		}
		for(j=1;j<=max_num_of_figures;j++)
		{
		     document.shopForm.painting_subjects_type.options[j-1]= new Option(j,j);
		}
		
		var max_Fram=2;
		for (i=1;i>=0;i--)
		{
			document.shopForm.packing_method.options[i] = null;
		}
		BindFram2()
		  document.shopForm.painting_subjects_type.selectedIndex = BlueD-1;//size
		document.shopForm.painting_style.selectedIndex=0;//oil;charl;pencil
		document.shopForm.painting_type.selectedIndex=1;//Select;People;pet:house
		if(BlueE=="Not framed (rolled in a tube)")
		{
			document.shopForm.packing_method.selectedIndex=0;
		}
		else
		{
			document.shopForm.packing_method.selectedIndex=1;
		}	
    }
      if(BlueA=="people" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)")
    {
         var max_num_of_figures=7;
        for (i=7;i>=max_num_of_figures;i--)
		{
			document.shopForm.painting_subjects_type.options[i] = null;
		}
		for(j=1;j<=max_num_of_figures;j++)
		{
		     document.shopForm.painting_subjects_type.options[j-1]= new Option(j,j);
		}
		
	    var max_Fram=2;
		for (i=1;i>=0;i--)
		{
			document.shopForm.packing_method.options[i] = null;
		}
		BindFram2()
		  document.shopForm.painting_subjects_type.selectedIndex = BlueD-1;//size
		document.shopForm.painting_style.selectedIndex=0;//oil;charl;pencil
		document.shopForm.painting_type.selectedIndex=1;//Select;People;pet:house
		if(BlueE=="Not framed (rolled in a tube)")
		{
			document.shopForm.packing_method.selectedIndex=0;
		}
		else
		{
			document.shopForm.packing_method.selectedIndex=1;
		}	
    }
      if(BlueA=="people" && BlueB=="oil" && BlueC=="36 x 48 Inches (90 x 120 cm)")
    {
         var max_num_of_figures=7;
        for (i=7;i>=max_num_of_figures;i--)
		{
			document.shopForm.painting_subjects_type.options[i] = null;
		}
		for(j=1;j<=max_num_of_figures;j++)
		{
		     document.shopForm.painting_subjects_type.options[j-1]= new Option(j,j);
		}
		
		var max_Fram=1;
		for (i=1;i>=0;i--)
		{
			document.shopForm.packing_method.options[i] = null;
		}
		BindFram1()
		  document.shopForm.painting_subjects_type.selectedIndex = BlueD-1;//size
		document.shopForm.painting_style.selectedIndex=0;//oil;charl;pencil
		document.shopForm.painting_type.selectedIndex=1;//Select;People;pet:house
		if(BlueE=="Not framed (rolled in a tube)")
		{
			document.shopForm.packing_method.selectedIndex=0;
		}
		else
		{
			document.shopForm.packing_method.selectedIndex=1;
		}	
	
    }
      if(BlueA=="people" && BlueB=="oil" && BlueC=="48 x 72 Inches (120 x 180 cm)")
    {
         var max_num_of_figures=7;
        for (i=7;i>=max_num_of_figures;i--)
		{
			document.shopForm.painting_subjects_type.options[i] = null;
		}
		for(j=1;j<=max_num_of_figures;j++)
		{
		     document.shopForm.painting_subjects_type.options[j-1]= new Option(j,j);
		}
		
		var max_Fram=1;
		for (i=1;i>=0;i--)
		{
			document.shopForm.packing_method.options[i] = null;
		}
		BindFram1()
		  document.shopForm.painting_subjects_type.selectedIndex = BlueD-1;//size
		document.shopForm.painting_style.selectedIndex=0;//oil;charl;pencil
		document.shopForm.painting_type.selectedIndex=1;//Select;People;pet:house
		if(BlueE=="Not framed (rolled in a tube)")
		{
			document.shopForm.packing_method.selectedIndex=0;
		}
		else
		{
			document.shopForm.packing_method.selectedIndex=1;
		}	
    } 
    //oil
    if(BlueA=="people" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value="222";
   }
     if(BlueA=="people" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value=222+109;
   }
      if(BlueA=="people" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value="289";
   }
   if(BlueA=="people" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value=289+109;
   }
      if(BlueA=="people" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="3" && BlueE=="Not framed (rolled in a tube)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value="356";
   }     
     if(BlueA=="people" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="3" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value=356+109;
   }
    if(BlueA=="people" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="4" && BlueE=="Not framed (rolled in a tube)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value="423";
   }
     if(BlueA=="people" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="4" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value=423+109;
   }
     if(BlueA=="people" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="5" && BlueE=="Not framed (rolled in a tube)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value="489";
   }
     if(BlueA=="people" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="5" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value=489+109;
   }
   //----------------------------------------
       if(BlueA=="people" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value="278";
   }
    if(BlueA=="people" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value=278+129;
   }
      if(BlueA=="people" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value="361";
   }
        if(BlueA=="people" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value=361+129;
   }
      if(BlueA=="people" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="3" && BlueE=="Not framed (rolled in a tube)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value="445";
   }     
       if(BlueA=="people" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="3" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value=445+129;
   }
    if(BlueA=="people" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="4" && BlueE=="Not framed (rolled in a tube)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value="528";
   }
   if(BlueA=="people" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="4" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value=528+129;
   }
     if(BlueA=="people" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="5" && BlueE=="Not framed (rolled in a tube)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value="612";
   }
      if(BlueA=="people" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="5" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value=612+129;
   }
       if(BlueA=="people" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="6" && BlueE=="Not framed (rolled in a tube)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value="695";
   }
        if(BlueA=="people" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="6" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value=695+129;
   }
     if(BlueA=="people" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="7" && BlueE=="Not framed (rolled in a tube)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value="751";
   }
        if(BlueA=="people" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="7" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value=751+129;
   }
  //------------------------------------------------------
    if(BlueA=="people" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value="348";
   }
     if(BlueA=="people" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value=348+169;
   }
      if(BlueA=="people" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value="452";
   }
      if(BlueA=="people" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value=452+169;
   }
      if(BlueA=="people" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="3" && BlueE=="Not framed (rolled in a tube)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value="556";
   }     
       if(BlueA=="people" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="3" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value=556+169;
   }
    if(BlueA=="people" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="4" && BlueE=="Not framed (rolled in a tube)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value="660";
   }
        if(BlueA=="people" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="4" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value=660+169;
   }
     if(BlueA=="people" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="5" && BlueE=="Not framed (rolled in a tube)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value="765";
   }
         if(BlueA=="people" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="5" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value=765+169;
   }
       if(BlueA=="people" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="6" && BlueE=="Not framed (rolled in a tube)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value="869";
   }
         if(BlueA=="people" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="6" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value=869+169;
   }
     if(BlueA=="people" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="7" && BlueE=="Not framed (rolled in a tube)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value="938";
   }
    if(BlueA=="people" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="7" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value=938+169;
   }
    //---------------------------------------------------
    if(BlueA=="people" && BlueB=="oil" && BlueC=="36 x 48 Inches (90 x 120 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value="417";
   }
      if(BlueA=="people" && BlueB=="oil" && BlueC=="36 x 48 Inches (90 x 120 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value="542";
   }
      if(BlueA=="people" && BlueB=="oil" && BlueC=="36 x 48 Inches (90 x 120 cm)" && BlueD=="3" && BlueE=="Not framed (rolled in a tube)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value="667";
   }     
    if(BlueA=="people" && BlueB=="oil" && BlueC=="36 x 48 Inches (90 x 120 cm)" && BlueD=="4" && BlueE=="Not framed (rolled in a tube)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value="792";
   }
     if(BlueA=="people" && BlueB=="oil" && BlueC=="36 x 48 Inches (90 x 120 cm)" && BlueD=="5" && BlueE=="Not framed (rolled in a tube)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value="917";
   }
       if(BlueA=="people" && BlueB=="oil" && BlueC=="36 x 48 Inches (90 x 120 cm)" && BlueD=="6" && BlueE=="Not framed (rolled in a tube)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value="1043";
   }
     if(BlueA=="people" && BlueB=="oil" && BlueC=="36 x 48 Inches (90 x 120 cm)" && BlueD=="7" && BlueE=="Not framed (rolled in a tube)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value="1126";
   }

    //---------------------------------------------------
   if(BlueA=="people" && BlueB=="oil" && BlueC=="48 x 72 Inches (120 x 180 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value="556";
   }
      if(BlueA=="people" && BlueB=="oil" && BlueC=="48 x 72 Inches (120 x 180 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value="723";
   }
      if(BlueA=="people" && BlueB=="oil" && BlueC=="48 x 72 Inches (120 x 180 cm)" && BlueD=="3" && BlueE=="Not framed (rolled in a tube)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value="890";
   }     
    if(BlueA=="people" && BlueB=="oil" && BlueC=="48 x 72 Inches (120 x 180 cm)" && BlueD=="4" && BlueE=="Not framed (rolled in a tube)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value="1056";
   }
     if(BlueA=="people" && BlueB=="oil" && BlueC=="48 x 72 Inches (120 x 180 cm)" && BlueD=="5" && BlueE=="Not framed (rolled in a tube)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value="1223";
   }
       if(BlueA=="people" && BlueB=="oil" && BlueC=="48 x 72 Inches (120 x 180 cm)" && BlueD=="6" && BlueE=="Not framed (rolled in a tube)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value="1390";
   }
     if(BlueA=="people" && BlueB=="oil" && BlueC=="48 x 72 Inches (120 x 180 cm)" && BlueD=="7" && BlueE=="Not framed (rolled in a tube)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value="1501";
   }
   //////////////////////////////////-------------------Charcoal Portrait, people (USD)----/////////////////////////////////////************CHANGED**
   
      if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="12 x 16 Inches (30 x 40 cm)")
      {
		  BindFigures2();     
        for (i=6;i>=0;i--)
		{
			document.shopForm.painting_size.options[i] = null;
		}
		BindType7();
		if(BlueC=="36 x 48 Inches (90 x 120 cm)"||BlueC=="48 x 72 Inches (120 x 180 cm)")
		{
			BindFram1();
		}
		else
		{
			BindFram2();
		}
		 document.shopForm.painting_subjects_type.selectedIndex = BlueD-1;//size
		document.shopForm.painting_style.selectedIndex=0;//oil;charl;pencil
		document.shopForm.painting_type.selectedIndex=2;//Select;People;pet:house
		if(BlueE=="Not framed (rolled in a tube)")
		{
			document.shopForm.packing_method.selectedIndex=0;
		}
		else
		{
			document.shopForm.packing_method.selectedIndex=1;
		}	
      }
	  
      if(BlueA=="landscape / house / vehicle" && BlueB=="oil" && BlueC=="12 x 16 Inches (30 x 40 cm)" )
      {
		  BindFigures1();
        for (i=6;i>=0;i--)
		{
			document.shopForm.painting_size.options[i] = null;
		}
		BindType7();
		if(BlueC=="36 x 48 Inches (90 x 120 cm)"||BlueC=="48 x 72 Inches (120 x 180 cm)")
		{
			BindFram1();
		}
		else
		{
			BindFram2();
		}
		 document.shopForm.painting_subjects_type.selectedIndex = BlueD-1;//size
		document.shopForm.painting_style.selectedIndex=0;//oil;charl;pencil
		document.shopForm.painting_type.selectedIndex=3;//Select;People;pet:house
		if(BlueE=="Not framed (rolled in a tube)")
		{
			document.shopForm.packing_method.selectedIndex=0;
		}
		else
		{
			document.shopForm.packing_method.selectedIndex=1;
		}	
      }
      
	  
	  //oil
	  
  if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value="109";
   }
     if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value=109+89;
   }
    if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value="142";
   }
    if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value=142+89;
   }
   //---------------------------------------
      if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value="142";
   }
    if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value=142+99;
   }
      if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value="184";
   }
    if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value=184+99;
   }
     //---------------------------------------
    if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value="174";
   }
     if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value=174+109;
   }
      if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value="227";
   }
      if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value=227+109;
   }
   //----------------------------------------
    if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value="218";
   }
    if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value=218+129;
   }
      if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value="283";
   }
      if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value=283+129;
   }
  //------------------------------------------------------
   if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value="273";
   }
       if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value=273+169;
   }
      if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value="354";
   }
       if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value=354+169;
   } 
	  ////-------------------------------------------
	   if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="36 x 48 Inches (90 x 120 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value="327";
   }
      
      if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="36 x 48 Inches (90 x 120 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value="425";
   }
   	  ////-------------------------------------------
	   if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="48 x 72 Inches (120 x 180 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value="436";
   }
      
      if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="48 x 72 Inches (120 x 180 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value="567";
   }
	  
	  //-------------------
	   if(BlueA=="landscape / house / vehicle" && BlueB=="oil" && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value="99";
   }
     if(BlueA=="landscape / house / vehicle" && BlueB=="oil" && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value=99+89;
   }
   //---------------------------------------
      if(BlueA=="landscape / house / vehicle" && BlueB=="oil" && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value="129";
   }
    if(BlueA=="landscape / house / vehicle" && BlueB=="oil" && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value=129+99;
   }
     //---------------------------------------
    if(BlueA=="landscape / house / vehicle" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value="158";
   }
     if(BlueA=="landscape / house / vehicle" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value=158+109;
   }
    
   //----------------------------------------
    if(BlueA=="landscape / house / vehicle" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value="198";
   }
    if(BlueA=="landscape / house / vehicle" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value=198+129;
   }
    
  //------------------------------------------------------
   if(BlueA=="landscape / house / vehicle" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value="248";
   }
   if(BlueA=="landscape / house / vehicle" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value=248+169;
   }
       if(BlueA=="landscape / house / vehicle" && BlueB=="oil" && BlueC=="36 x 48 Inches (90 x 120 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value="297";
   }
         if(BlueA=="landscape / house / vehicle" && BlueB=="oil" && BlueC=="48 x 72 Inches (120 x 180 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value="396";
   }
	  
  ///////////////////////////////////////////////////*/
  
  if(BlueA=="people" && BlueB=="oil" && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
{
    document.shopForm.price.value="69";
}

if(BlueA=="people" && BlueB=="oil" && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Pounds Sterling")
{
    document.shopForm.price.value=69+43;
}

if(BlueA=="people" && BlueB=="oil" && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
{
    document.shopForm.price.value="90";
}

if(BlueA=="people" && BlueB=="oil" && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Pounds Sterling")
{
    document.shopForm.price.value=90+43;
}

	      if(BlueA=="people" && BlueB=="oil" && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value="90";
   }
      if(BlueA=="people" && BlueB=="oil" && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value=90+48;
   }
      if(BlueA=="people" && BlueB=="oil" && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value="117";
   }
       if(BlueA=="people" && BlueB=="oil" && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value=117+48;
   }
      if(BlueA=="people" && BlueB=="oil" && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="3" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value="114";
   }
    if(BlueA=="people" && BlueB=="oil" && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="3" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value=114+48;
   }

    //oil
    if(BlueA=="people" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value="110";
   }
     if(BlueA=="people" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value=110+53;
   }
      if(BlueA=="people" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value="144";
   }
   if(BlueA=="people" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value=144+53;
   }
      if(BlueA=="people" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="3" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value="177";
   }     
     if(BlueA=="people" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="3" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value=177+53;
   }
    if(BlueA=="people" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="4" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value="210";
   }
     if(BlueA=="people" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="4" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value=210+53;
   }
     if(BlueA=="people" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="5" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value="243";
   }
     if(BlueA=="people" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="5" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value=243+53;
   }
   //----------------------------------------
       if(BlueA=="people" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value="138";
   }
    if(BlueA=="people" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value=138+63;
   }
      if(BlueA=="people" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value="179";
   }
        if(BlueA=="people" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value=179+63;
   }
      if(BlueA=="people" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="3" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value="221";
   }     
       if(BlueA=="people" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="3" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value=221+63;
   }
    if(BlueA=="people" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="4" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value="262";
   }
   if(BlueA=="people" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="4" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value=262+63;
   }
     if(BlueA=="people" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="5" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value="304";
   }
      if(BlueA=="people" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="5" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value=304+63;
   }
       if(BlueA=="people" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="6" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value="345";
   }
        if(BlueA=="people" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="6" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value=345+63;
   }
     if(BlueA=="people" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="7" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value="373";
   }
        if(BlueA=="people" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="7" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value=373+63;
   }
  //------------------------------------------------------
    if(BlueA=="people" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value="173";
   }
     if(BlueA=="people" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value=173+82;
   }
      if(BlueA=="people" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value="224";
   }
      if(BlueA=="people" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value=224+82;
   }
      if(BlueA=="people" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="3" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value="276";
   }     
       if(BlueA=="people" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="3" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value=276+82;
   }
    if(BlueA=="people" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="4" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value="328";
   }
        if(BlueA=="people" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="4" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value=328+82;
   }
     if(BlueA=="people" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="5" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value="380";
   }
         if(BlueA=="people" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="5" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value=380+82;
   }
       if(BlueA=="people" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="6" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value="431";
   }
         if(BlueA=="people" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="6" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value=431+82;
   }
     if(BlueA=="people" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="7" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value="466";
   }
    if(BlueA=="people" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="7" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value=466+82;
   }
    //---------------------------------------------------
    if(BlueA=="people" && BlueB=="oil" && BlueC=="36 x 48 Inches (90 x 120 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value="207";
   }
      if(BlueA=="people" && BlueB=="oil" && BlueC=="36 x 48 Inches (90 x 120 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value="269";
   }
      if(BlueA=="people" && BlueB=="oil" && BlueC=="36 x 48 Inches (90 x 120 cm)" && BlueD=="3" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value="331";
   }     
    if(BlueA=="people" && BlueB=="oil" && BlueC=="36 x 48 Inches (90 x 120 cm)" && BlueD=="4" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value="393";
   }
     if(BlueA=="people" && BlueB=="oil" && BlueC=="36 x 48 Inches (90 x 120 cm)" && BlueD=="5" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value="455";
   }
       if(BlueA=="people" && BlueB=="oil" && BlueC=="36 x 48 Inches (90 x 120 cm)" && BlueD=="6" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value="518";
   }
     if(BlueA=="people" && BlueB=="oil" && BlueC=="36 x 48 Inches (90 x 120 cm)" && BlueD=="7" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value="559";
   }

    //---------------------------------------------------
   if(BlueA=="people" && BlueB=="oil" && BlueC=="48 x 72 Inches (120 x 180 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value="276";
   }
      if(BlueA=="people" && BlueB=="oil" && BlueC=="48 x 72 Inches (120 x 180 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value="359";
   }
      if(BlueA=="people" && BlueB=="oil" && BlueC=="48 x 72 Inches (120 x 180 cm)" && BlueD=="3" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value="442";
   }     
    if(BlueA=="people" && BlueB=="oil" && BlueC=="48 x 72 Inches (120 x 180 cm)" && BlueD=="4" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value="524";
   }
     if(BlueA=="people" && BlueB=="oil" && BlueC=="48 x 72 Inches (120 x 180 cm)" && BlueD=="5" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value="607";
   }
       if(BlueA=="people" && BlueB=="oil" && BlueC=="48 x 72 Inches (120 x 180 cm)" && BlueD=="6" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value="690";
   }
     if(BlueA=="people" && BlueB=="oil" && BlueC=="48 x 72 Inches (120 x 180 cm)" && BlueD=="7" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value="745";
   }
   //////////////////////////////////-------------------Charcoal Portrait, people (USD)----/////////////////////////////////////
	  //oil
  if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value="55";
   }
     if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value=55+43;
   }
    if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value="72";
   }
    if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value=72+43;
   }
   //---------------------------------------
      if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value="72";
   }
    if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value=72+48;
   }
      if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value="93";
   }
    if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value=93+48;
   }
     //---------------------------------------
    if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value="88";
   }
     if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value=88+53;
   }
      if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value="114";
   }
      if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value=114+53;
   }
   //----------------------------------------
    if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value="110";
   }
    if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value=110+53;
   }
      if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value="143";
   }
      if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value=143+53;
   }
  //------------------------------------------------------
   if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value="138";
   }
       if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value=138+82;
   }
      if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value="179";
   }
       if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value=179+82;
   } 
	  ////-------------------------------------------
	   if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="36 x 48 Inches (90 x 120 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value="165";
   }
      
      if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="36 x 48 Inches (90 x 120 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value="215";
   }
   	  ////-------------------------------------------
	   if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="48 x 72 Inches (120 x 180 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value="220";
   }
      
      if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="48 x 72 Inches (120 x 180 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value="286";
   }
	  
	  //-------------------
	   if(BlueA=="landscape / house / vehicle" && BlueB=="oil" && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value="49";
   }
     if(BlueA=="landscape / house / vehicle" && BlueB=="oil" && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value=49+43;
   }
   //---------------------------------------
      if(BlueA=="landscape / house / vehicle" && BlueB=="oil" && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value="64";
   }
    if(BlueA=="landscape / house / vehicle" && BlueB=="oil" && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value=64+48;
   }
     //---------------------------------------
    if(BlueA=="landscape / house / vehicle" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value="78";
   }
     if(BlueA=="landscape / house / vehicle" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value=78+53;
   }
    
   //----------------------------------------
    if(BlueA=="landscape / house / vehicle" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value="98";
   }
    if(BlueA=="landscape / house / vehicle" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value=98+63;
   }
    
  //------------------------------------------------------
   if(BlueA=="landscape / house / vehicle" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value="123";
   }
   if(BlueA=="landscape / house / vehicle" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value=123+82;
   }
       if(BlueA=="landscape / house / vehicle" && BlueB=="oil" && BlueC=="36 x 48 Inches (90 x 120 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value="147";
   }
         if(BlueA=="landscape / house / vehicle" && BlueB=="oil" && BlueC=="48 x 72 Inches (120 x 180 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value="196";
   }
   //////////////////////////////////////Oil For Eurp
   if(BlueA=="people" && BlueB=="oil" && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
{
    document.shopForm.price.value="89";
}

if(BlueA=="people" && BlueB=="oil" && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Euros")
{
    document.shopForm.price.value=89+64;
}

if(BlueA=="people" && BlueB=="oil" && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
{
    document.shopForm.price.value="116";
}

if(BlueA=="people" && BlueB=="oil" && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Euros")
{
    document.shopForm.price.value=116+64;
}

	      if(BlueA=="people" && BlueB=="oil" && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
   {
    document.shopForm.price.value="116";
   }
      if(BlueA=="people" && BlueB=="oil" && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Euros")
   {
    document.shopForm.price.value=116+72;
   }
      if(BlueA=="people" && BlueB=="oil" && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
   {
    document.shopForm.price.value="150";
   }
       if(BlueA=="people" && BlueB=="oil" && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Euros")
   {
    document.shopForm.price.value=150+72;
   }
      if(BlueA=="people" && BlueB=="oil" && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="3" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
   {
    document.shopForm.price.value="185";
   }
    if(BlueA=="people" && BlueB=="oil" && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="3" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Euros")
   {
    document.shopForm.price.value=185+72;
   }

    //oil
    if(BlueA=="people" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
   {
    document.shopForm.price.value="142";
   }
     if(BlueA=="people" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Euros")
   {
    document.shopForm.price.value=142+79;
   }
      if(BlueA=="people" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
   {
    document.shopForm.price.value="185";
   }
   if(BlueA=="people" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Euros")
   {
    document.shopForm.price.value=185+79;
   }
      if(BlueA=="people" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="3" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
   {
    document.shopForm.price.value="228";
   }     
     if(BlueA=="people" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="3" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Euros")
   {
    document.shopForm.price.value=228+79;
   }
    if(BlueA=="people" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="4" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
   {
    document.shopForm.price.value="271";
   }
     if(BlueA=="people" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="4" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Euros")
   {
    document.shopForm.price.value=271+79;
   }
     if(BlueA=="people" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="5" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
   {
    document.shopForm.price.value="313";
   }
     if(BlueA=="people" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="5" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Euros")
   {
    document.shopForm.price.value=313+79;
   }
   //----------------------------------------
       if(BlueA=="people" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
   {
    document.shopForm.price.value="178";
   }
    if(BlueA=="people" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Euros")
   {
    document.shopForm.price.value=178+94;
   }
      if(BlueA=="people" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
   {
    document.shopForm.price.value="231";
   }
        if(BlueA=="people" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Euros")
   {
    document.shopForm.price.value=231+94;
   }
      if(BlueA=="people" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="3" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
   {
    document.shopForm.price.value="285";
   }     
       if(BlueA=="people" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="3" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Euros")
   {
    document.shopForm.price.value=285+94;
   }
    if(BlueA=="people" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="4" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
   {
    document.shopForm.price.value="338";
   }
   if(BlueA=="people" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="4" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Euros")
   {
    document.shopForm.price.value=338+94;
   }
     if(BlueA=="people" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="5" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
   {
    document.shopForm.price.value="382";
   }
      if(BlueA=="people" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="5" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Euros")
   {
    document.shopForm.price.value=382+94;
   }
       if(BlueA=="people" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="6" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
   {
    document.shopForm.price.value="445";
   }
        if(BlueA=="people" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="6" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Euros")
   {
    document.shopForm.price.value=445+94;
   }
     if(BlueA=="people" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="7" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
   {
    document.shopForm.price.value="481";
   }
        if(BlueA=="people" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="7" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Euros")
   {
    document.shopForm.price.value=481+94;
   }
  //------------------------------------------------------
    if(BlueA=="people" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
   {
    document.shopForm.price.value="223";
   }
     if(BlueA=="people" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Euros")
   {
    document.shopForm.price.value=223+123;
   }
      if(BlueA=="people" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
   {
    document.shopForm.price.value="289";
   }
      if(BlueA=="people" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Euros")
   {
    document.shopForm.price.value=289+123;
   }
      if(BlueA=="people" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="3" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
   {
    document.shopForm.price.value="356";
   }     
       if(BlueA=="people" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="3" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Euros")
   {
    document.shopForm.price.value=356+123;
   }
    if(BlueA=="people" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="4" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
   {
    document.shopForm.price.value="423";
   }
        if(BlueA=="people" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="4" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Euros")
   {
    document.shopForm.price.value=423+123;
   }
     if(BlueA=="people" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="5" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
   {
    document.shopForm.price.value="490";
   }
         if(BlueA=="people" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="5" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Euros")
   {
    document.shopForm.price.value=490+123;
   }
       if(BlueA=="people" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="6" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
   {
    document.shopForm.price.value="556";
   }
         if(BlueA=="people" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="6" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Euros")
   {
    document.shopForm.price.value=556+123;
   }
     if(BlueA=="people" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="7" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
   {
    document.shopForm.price.value="601";
   }
    if(BlueA=="people" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="7" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Euros")
   {
    document.shopForm.price.value=601+123;
   }
    //---------------------------------------------------
    if(BlueA=="people" && BlueB=="oil" && BlueC=="36 x 48 Inches (90 x 120 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
   {
    document.shopForm.price.value="267";
   }
      if(BlueA=="people" && BlueB=="oil" && BlueC=="36 x 48 Inches (90 x 120 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
   {
    document.shopForm.price.value="347";
   }
      if(BlueA=="people" && BlueB=="oil" && BlueC=="36 x 48 Inches (90 x 120 cm)" && BlueD=="3" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
   {
    document.shopForm.price.value="427";
   }     
    if(BlueA=="people" && BlueB=="oil" && BlueC=="36 x 48 Inches (90 x 120 cm)" && BlueD=="4" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
   {
    document.shopForm.price.value="507";
   }
     if(BlueA=="people" && BlueB=="oil" && BlueC=="36 x 48 Inches (90 x 120 cm)" && BlueD=="5" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
   {
    document.shopForm.price.value="587";
   }
       if(BlueA=="people" && BlueB=="oil" && BlueC=="36 x 48 Inches (90 x 120 cm)" && BlueD=="6" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
   {
    document.shopForm.price.value="668";
   }
     if(BlueA=="people" && BlueB=="oil" && BlueC=="36 x 48 Inches (90 x 120 cm)" && BlueD=="7" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
   {
    document.shopForm.price.value="721";
   }

    //---------------------------------------------------
   if(BlueA=="people" && BlueB=="oil" && BlueC=="48 x 72 Inches (120 x 180 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
   {
    document.shopForm.price.value="356";
   }
      if(BlueA=="people" && BlueB=="oil" && BlueC=="48 x 72 Inches (120 x 180 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
   {
    document.shopForm.price.value="463";
   }
      if(BlueA=="people" && BlueB=="oil" && BlueC=="48 x 72 Inches (120 x 180 cm)" && BlueD=="3" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
   {
    document.shopForm.price.value="570";
   }     
    if(BlueA=="people" && BlueB=="oil" && BlueC=="48 x 72 Inches (120 x 180 cm)" && BlueD=="4" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
   {
    document.shopForm.price.value="676";
   }
     if(BlueA=="people" && BlueB=="oil" && BlueC=="48 x 72 Inches (120 x 180 cm)" && BlueD=="5" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
   {
    document.shopForm.price.value="783";
   }
       if(BlueA=="people" && BlueB=="oil" && BlueC=="48 x 72 Inches (120 x 180 cm)" && BlueD=="6" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
   {
    document.shopForm.price.value="890";
   }
     if(BlueA=="people" && BlueB=="oil" && BlueC=="48 x 72 Inches (120 x 180 cm)" && BlueD=="7" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
   {
    document.shopForm.price.value="961";
   }
   //////////////////////////////////-------------------Charcoal Portrait, people (USD)----/////////////////////////////////////
	  //oil
  if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
   {
    document.shopForm.price.value="69";
   }
     if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Euros")
   {
    document.shopForm.price.value=69+64;
   }
    if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
   {
    document.shopForm.price.value="90";
   }
    if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Euros")
   {
    document.shopForm.price.value=90+64;
   }
   //---------------------------------------
      if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
   {
    document.shopForm.price.value="90";
   }
    if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Euros")
   {
    document.shopForm.price.value=90+72;
   }
      if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
   {
    document.shopForm.price.value="117";
   }
    if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Euros")
   {
    document.shopForm.price.value=117+72;
   }
     //---------------------------------------
    if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
   {
    document.shopForm.price.value="110";
   }
     if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Euros")
   {
    document.shopForm.price.value=110+79;
   }
      if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
   {
    document.shopForm.price.value="144";
   }
      if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Euros")
   {
    document.shopForm.price.value=144+79;
   }
   //----------------------------------------
    if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
   {
    document.shopForm.price.value="138";
   }
    if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Euros")
   {
    document.shopForm.price.value=138+94;
   }
      if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
   {
    document.shopForm.price.value="179";
   }
      if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Euros")
   {
    document.shopForm.price.value=179+94;
   }
  //------------------------------------------------------
   if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
   {
    document.shopForm.price.value="173";
   }
       if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Euros")
   {
    document.shopForm.price.value=173+123;
   }
      if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
   {
    document.shopForm.price.value="224";
   }
       if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Euros")
   {
    document.shopForm.price.value=224+123;
   } 
	  ////-------------------------------------------
	   if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="36 x 48 Inches (90 x 120 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
   {
    document.shopForm.price.value="207";
   }
      
      if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="36 x 48 Inches (90 x 120 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
   {
    document.shopForm.price.value="269";
   }
   	  ////-------------------------------------------
	   if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="48 x 72 Inches (120 x 180 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
   {
    document.shopForm.price.value="276";
   }
      
      if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="48 x 72 Inches (120 x 180 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
   {
    document.shopForm.price.value="359";
   }
	  
	  //-------------------
	   if(BlueA=="landscape / house / vehicle" && BlueB=="oil" && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
   {
    document.shopForm.price.value="59";
   }
     if(BlueA=="landscape / house / vehicle" && BlueB=="oil" && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Euros")
   {
    document.shopForm.price.value=59+64;
   }
   //---------------------------------------
      if(BlueA=="landscape / house / vehicle" && BlueB=="oil" && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
   {
    document.shopForm.price.value="77";
   }
    if(BlueA=="landscape / house / vehicle" && BlueB=="oil" && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Euros")
   {
    document.shopForm.price.value=77+72;
   }
     //---------------------------------------
    if(BlueA=="landscape / house / vehicle" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
   {
    document.shopForm.price.value="94";
   }
     if(BlueA=="landscape / house / vehicle" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Euros")
   {
    document.shopForm.price.value=94+79;
   }
    
   //----------------------------------------
    if(BlueA=="landscape / house / vehicle" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
   {
    document.shopForm.price.value="118";
   }
    if(BlueA=="landscape / house / vehicle" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Euros")
   {
    document.shopForm.price.value=118+94;
   }
    
  //------------------------------------------------------
   if(BlueA=="landscape / house / vehicle" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
   {
    document.shopForm.price.value="148";
   }
   if(BlueA=="landscape / house / vehicle" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Euros")
   {
    document.shopForm.price.value=148+123;
   }
       if(BlueA=="landscape / house / vehicle" && BlueB=="oil" && BlueC=="36 x 48 Inches (90 x 120 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
   {
    document.shopForm.price.value="177";
   }
         if(BlueA=="landscape / house / vehicle" && BlueB=="oil" && BlueC=="48 x 72 Inches (120 x 180 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
   {
    document.shopForm.price.value="236";
   }
   /////////////////////////////////////End Oil For Eurp
   ////////////////////////////////////Begin Oil For Cand

if(BlueA=="people" && BlueB=="oil" && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
{
    document.shopForm.price.value="143";
}

if(BlueA=="people" && BlueB=="oil" && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Canadian Dollars")
{
    document.shopForm.price.value=143+94;
}

if(BlueA=="people" && BlueB=="oil" && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
{
    document.shopForm.price.value="186";
}

if(BlueA=="people" && BlueB=="oil" && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Canadian Dollars")
{
    document.shopForm.price.value=186+94;
}

	      if(BlueA=="people" && BlueB=="oil" && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value="186";
   }
      if(BlueA=="people" && BlueB=="oil" && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value=186+104;
   }
      if(BlueA=="people" && BlueB=="oil" && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value="242";
   }
       if(BlueA=="people" && BlueB=="oil" && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value=242+104;
   }
      if(BlueA=="people" && BlueB=="oil" && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="3" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value="297";
   }
    if(BlueA=="people" && BlueB=="oil" && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="3" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value=297+104;
   }

    //oil
    if(BlueA=="people" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value="229";
   }
     if(BlueA=="people" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value=229+115;
   }
      if(BlueA=="people" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value="297";
   }
   if(BlueA=="people" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value=297+115;
   }
      if(BlueA=="people" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="3" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value="366";
   }     
     if(BlueA=="people" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="3" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value=366+115;
   }
    if(BlueA=="people" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="4" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value="435";
   }
     if(BlueA=="people" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="4" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value=435+115;
   }
     if(BlueA=="people" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="5" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value="503";
   }
     if(BlueA=="people" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="5" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value=503+115;
   }
   //----------------------------------------
       if(BlueA=="people" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value="286";
   }
    if(BlueA=="people" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value=286+136;
   }
      if(BlueA=="people" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value="372";
   }
        if(BlueA=="people" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value=372+136;
   }
      if(BlueA=="people" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="3" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value="458";
   }     
       if(BlueA=="people" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="3" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value=458+136;
   }
    if(BlueA=="people" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="4" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value="543";
   }
   if(BlueA=="people" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="4" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value=543+136;
   }
     if(BlueA=="people" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="5" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value="629";
   }
      if(BlueA=="people" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="5" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value=626+136;
   }
       if(BlueA=="people" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="6" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value="715";
   }
        if(BlueA=="people" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="6" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value=715+136;
   }
     if(BlueA=="people" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="7" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value="772";
   }
        if(BlueA=="people" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="7" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value=772+136;
   }
  //------------------------------------------------------
    if(BlueA=="people" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value="358";
   }
     if(BlueA=="people" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value=358+179;
   }
      if(BlueA=="people" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value="465";
   }
      if(BlueA=="people" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value=465+179;
   }
      if(BlueA=="people" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="3" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value="572";
   }     
       if(BlueA=="people" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="3" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value=572+179;
   }
    if(BlueA=="people" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="4" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value="679";
   }
        if(BlueA=="people" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="4" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value=679+179;
   }
     if(BlueA=="people" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="5" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value="787";
   }
         if(BlueA=="people" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="5" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value=787+179;
   }
       if(BlueA=="people" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="6" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value="894";
   }
         if(BlueA=="people" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="6" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value=894+179;
   }
     if(BlueA=="people" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="7" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value="965";
   }
    if(BlueA=="people" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="7" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value=965+179;
   }
    //---------------------------------------------------
    if(BlueA=="people" && BlueB=="oil" && BlueC=="36 x 48 Inches (90 x 120 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value="429";
   }
      if(BlueA=="people" && BlueB=="oil" && BlueC=="36 x 48 Inches (90 x 120 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value="558";
   }
      if(BlueA=="people" && BlueB=="oil" && BlueC=="36 x 48 Inches (90 x 120 cm)" && BlueD=="3" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value="686";
   }     
    if(BlueA=="people" && BlueB=="oil" && BlueC=="36 x 48 Inches (90 x 120 cm)" && BlueD=="4" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value="815";
   }
     if(BlueA=="people" && BlueB=="oil" && BlueC=="36 x 48 Inches (90 x 120 cm)" && BlueD=="5" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value="944";
   }
       if(BlueA=="people" && BlueB=="oil" && BlueC=="36 x 48 Inches (90 x 120 cm)" && BlueD=="6" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value="1073";
   }
     if(BlueA=="people" && BlueB=="oil" && BlueC=="36 x 48 Inches (90 x 120 cm)" && BlueD=="7" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value="1158";
   }

    //---------------------------------------------------
   if(BlueA=="people" && BlueB=="oil" && BlueC=="48 x 72 Inches (120 x 180 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value="572";
   }
      if(BlueA=="people" && BlueB=="oil" && BlueC=="48 x 72 Inches (120 x 180 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value="744";
   }
      if(BlueA=="people" && BlueB=="oil" && BlueC=="48 x 72 Inches (120 x 180 cm)" && BlueD=="3" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value="915";
   }     
    if(BlueA=="people" && BlueB=="oil" && BlueC=="48 x 72 Inches (120 x 180 cm)" && BlueD=="4" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value="1087";
   }
     if(BlueA=="people" && BlueB=="oil" && BlueC=="48 x 72 Inches (120 x 180 cm)" && BlueD=="5" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value="1258";
   }
       if(BlueA=="people" && BlueB=="oil" && BlueC=="48 x 72 Inches (120 x 180 cm)" && BlueD=="6" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value="1430";
   }
     if(BlueA=="people" && BlueB=="oil" && BlueC=="48 x 72 Inches (120 x 180 cm)" && BlueD=="7" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value="1544";
   }
   //////////////////////////////////-------------------Charcoal Portrait, people (USD)----/////////////////////////////////////
	  //oil
  if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value="109";
   }
     if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value=109+94;
   }
    if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value="142";
   }
    if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value=142+94;
   }
   //---------------------------------------
      if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value="142";
   }
    if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value=142+104;
   }
      if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value="184";
   }
    if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value=184+104;
   }
     //---------------------------------------
    if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value="174";
   }
     if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value=174+115;
   }
      if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value="227";
   }
      if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value=227+115;
   }
   //----------------------------------------
    if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value="218";
   }
    if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value=218+136;
   }
      if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value="283";
   }
      if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value=283+136;
   }
  //------------------------------------------------------
   if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value="273";
   }
       if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value=273+179;
   }
      if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value="354";
   }
       if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value=354+179;
   } 
	  ////-------------------------------------------
	   if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="36 x 48 Inches (90 x 120 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value="327";
   }
      
      if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="36 x 48 Inches (90 x 120 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value="425";
   }
   	  ////-------------------------------------------
	   if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="48 x 72 Inches (120 x 180 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value="436";
   }
      
      if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="48 x 72 Inches (120 x 180 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value="567";
   }
	  
	  //-------------------
	   if(BlueA=="landscape / house / vehicle" && BlueB=="oil" && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value="99";
   }
     if(BlueA=="landscape / house / vehicle" && BlueB=="oil" && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value=99+94;
   }
   //---------------------------------------
      if(BlueA=="landscape / house / vehicle" && BlueB=="oil" && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value="129";
   }
    if(BlueA=="landscape / house / vehicle" && BlueB=="oil" && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value=129+104;
   }
     //---------------------------------------
    if(BlueA=="landscape / house / vehicle" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value="158";
   }
     if(BlueA=="landscape / house / vehicle" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value=158+115;
   }
    
   //----------------------------------------
    if(BlueA=="landscape / house / vehicle" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value="198";
   }
    if(BlueA=="landscape / house / vehicle" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value=198+136;
   }
    
  //------------------------------------------------------
   if(BlueA=="landscape / house / vehicle" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value="248";
   }
   if(BlueA=="landscape / house / vehicle" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value=248+179;
   }
       if(BlueA=="landscape / house / vehicle" && BlueB=="oil" && BlueC=="36 x 48 Inches (90 x 120 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value="297";
   }
         if(BlueA=="landscape / house / vehicle" && BlueB=="oil" && BlueC=="48 x 72 Inches (120 x 180 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value="396";
   }

   ////////////////////////////////////End Oil For Cand
   ////////////////////////////////////Begin Oil For Austrl
  

if(BlueA=="people" && BlueB=="oil" && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
{
    document.shopForm.price.value="149";
}

if(BlueA=="people" && BlueB=="oil" && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Australian Dollars")
{
    document.shopForm.price.value=149+105;
}

if(BlueA=="people" && BlueB=="oil" && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
{
    document.shopForm.price.value="194";
}

if(BlueA=="people" && BlueB=="oil" && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Australian Dollars")
{
    document.shopForm.price.value=194+105;
}

	      if(BlueA=="people" && BlueB=="oil" && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value="194";
   }
      if(BlueA=="people" && BlueB=="oil" && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value=194+116;
   }
      if(BlueA=="people" && BlueB=="oil" && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value="252";
   }
       if(BlueA=="people" && BlueB=="oil" && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value=252+116;
   }
      if(BlueA=="people" && BlueB=="oil" && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="3" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value="310";
   }
    if(BlueA=="people" && BlueB=="oil" && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="3" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value=310+116;
   }

    //oil
    if(BlueA=="people" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value="238";
   }
     if(BlueA=="people" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value=238+128;
   }
      if(BlueA=="people" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value="310";
   }
   if(BlueA=="people" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value=310+128;
   }
      if(BlueA=="people" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="3" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value="381";
   }     
     if(BlueA=="people" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="3" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value=381+128;
   }
    if(BlueA=="people" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="4" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value="453";
   }
     if(BlueA=="people" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="4" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value=453+128;
   }
     if(BlueA=="people" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="5" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value="524";
   }
     if(BlueA=="people" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="5" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value=524+128;
   }
   //----------------------------------------
       if(BlueA=="people" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value="298";
   }
    if(BlueA=="people" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value=298+152;
   }
      if(BlueA=="people" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value="387";
   }
        if(BlueA=="people" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value=387+152;
   }
      if(BlueA=="people" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="3" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value="477";
   }     
       if(BlueA=="people" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="3" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value=477+152;
   }
    if(BlueA=="people" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="4" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value="566";
   }
   if(BlueA=="people" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="4" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value=566+152;
   }
     if(BlueA=="people" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="5" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value="656";
   }
      if(BlueA=="people" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="5" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value=656+152;
   }
       if(BlueA=="people" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="6" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value="745";
   }
        if(BlueA=="people" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="6" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value=745+152;
   }
     if(BlueA=="people" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="7" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value="805";
   }
        if(BlueA=="people" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="7" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value=805+152;
   }
  //------------------------------------------------------
    if(BlueA=="people" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value="373";
   }
     if(BlueA=="people" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value=373+199;
   }
      if(BlueA=="people" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value="484";
   }
      if(BlueA=="people" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value=484+199;
   }
      if(BlueA=="people" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="3" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value="596";
   }     
       if(BlueA=="people" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="3" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value=596+199;
   }
    if(BlueA=="people" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="4" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value="708";
   }
        if(BlueA=="people" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="4" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value=708+199;
   }
     if(BlueA=="people" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="5" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value="820";
   }
         if(BlueA=="people" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="5" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value=820+199;
   }
       if(BlueA=="people" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="6" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value="931";
   }
         if(BlueA=="people" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="6" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value=931+199;
   }
     if(BlueA=="people" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="7" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value="1006";
   }
    if(BlueA=="people" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="7" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value=1006+199;
   }
    //---------------------------------------------------
    if(BlueA=="people" && BlueB=="oil" && BlueC=="36 x 48 Inches (90 x 120 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value="447";
   }
      if(BlueA=="people" && BlueB=="oil" && BlueC=="36 x 48 Inches (90 x 120 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value="581";
   }
      if(BlueA=="people" && BlueB=="oil" && BlueC=="36 x 48 Inches (90 x 120 cm)" && BlueD=="3" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value="715";
   }     
    if(BlueA=="people" && BlueB=="oil" && BlueC=="36 x 48 Inches (90 x 120 cm)" && BlueD=="4" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value="849";
   }
     if(BlueA=="people" && BlueB=="oil" && BlueC=="36 x 48 Inches (90 x 120 cm)" && BlueD=="5" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value="983";
   }
       if(BlueA=="people" && BlueB=="oil" && BlueC=="36 x 48 Inches (90 x 120 cm)" && BlueD=="6" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value="1118";
   }
     if(BlueA=="people" && BlueB=="oil" && BlueC=="36 x 48 Inches (90 x 120 cm)" && BlueD=="7" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value="1207";
   }

    //---------------------------------------------------
   if(BlueA=="people" && BlueB=="oil" && BlueC=="48 x 72 Inches (120 x 180 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value="596";
   }
      if(BlueA=="people" && BlueB=="oil" && BlueC=="48 x 72 Inches (120 x 180 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value="775";
   }
      if(BlueA=="people" && BlueB=="oil" && BlueC=="48 x 72 Inches (120 x 180 cm)" && BlueD=="3" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value="954";
   }     
    if(BlueA=="people" && BlueB=="oil" && BlueC=="48 x 72 Inches (120 x 180 cm)" && BlueD=="4" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value="1132";
   }
     if(BlueA=="people" && BlueB=="oil" && BlueC=="48 x 72 Inches (120 x 180 cm)" && BlueD=="5" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value="1311";
   }
       if(BlueA=="people" && BlueB=="oil" && BlueC=="48 x 72 Inches (120 x 180 cm)" && BlueD=="6" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value="1490";
   }
     if(BlueA=="people" && BlueB=="oil" && BlueC=="48 x 72 Inches (120 x 180 cm)" && BlueD=="7" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value="1609";
   }
   //////////////////////////////////-------------------Charcoal Portrait, people (USD)----/////////////////////////////////////
	  //oil
  if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value="117";
   }
     if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value=117+105;
   }
    if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value="152";
   }
    if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value=152+105;
   }
   //---------------------------------------
      if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value="152";
   }
    if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value=152+116;
   }
      if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value="198";
   }
    if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value=198+116;
   }
     //---------------------------------------
    if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value="187";
   }
     if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value=187+128;
   }
      if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value="243";
   }
      if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value=243+128;
   }
   //----------------------------------------
    if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value="234";
   }
    if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value=234+152;
   }
      if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value="304";
   }
      if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value=304+152;
   }
  //------------------------------------------------------
   if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value="293";
   }
       if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value=293+199;
   }
      if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value="380";
   }
       if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value=380+199;
   } 
	  ////-------------------------------------------
	   if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="36 x 48 Inches (90 x 120 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value="351";
   }
      
      if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="36 x 48 Inches (90 x 120 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value="456";
   }
   	  ////-------------------------------------------
	   if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="48 x 72 Inches (120 x 180 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value="468";
   }
      
      if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="48 x 72 Inches (120 x 180 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value="608";
   }
	  
	  //-------------------
	   if(BlueA=="landscape / house / vehicle" && BlueB=="oil" && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value="107";
   }
     if(BlueA=="landscape / house / vehicle" && BlueB=="oil" && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value=107+105;
   }
   //---------------------------------------
      if(BlueA=="landscape / house / vehicle" && BlueB=="oil" && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value="139";
   }
    if(BlueA=="landscape / house / vehicle" && BlueB=="oil" && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value=139+116;
   }
     //---------------------------------------
    if(BlueA=="landscape / house / vehicle" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value="171";
   }
     if(BlueA=="landscape / house / vehicle" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value=171+128;
   }
    
   //----------------------------------------
    if(BlueA=="landscape / house / vehicle" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value="214";
   }
    if(BlueA=="landscape / house / vehicle" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value=214+152;
   }
    
  //------------------------------------------------------
   if(BlueA=="landscape / house / vehicle" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value="248";
   }
   if(BlueA=="landscape / house / vehicle" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value=268+199;
   }
       if(BlueA=="landscape / house / vehicle" && BlueB=="oil" && BlueC=="36 x 48 Inches (90 x 120 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value="321";
   }
         if(BlueA=="landscape / house / vehicle" && BlueB=="oil" && BlueC=="48 x 72 Inches (120 x 180 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value="428";
   }
   ////////////////////////////End For Austral
   ///////////////////////////Begin Japan
   

if(BlueA=="people" && BlueB=="oil" && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
{
    document.shopForm.price.value="1499";
}

if(BlueA=="people" && BlueB=="oil" && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Yen")
{
    document.shopForm.price.value=1499+10502;
}

if(BlueA=="people" && BlueB=="oil" && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
{
    document.shopForm.price.value="19499";
}

if(BlueA=="people" && BlueB=="oil" && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Yen")
{
    document.shopForm.price.value=19499+10502;
}

	      if(BlueA=="people" && BlueB=="oil" && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
   {
    document.shopForm.price.value="19499";
   }
      if(BlueA=="people" && BlueB=="oil" && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Yen")
   {
    document.shopForm.price.value=19499+11682;
   }
      if(BlueA=="people" && BlueB=="oil" && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
   {
    document.shopForm.price.value="25384";
   }
       if(BlueA=="people" && BlueB=="oil" && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Yen")
   {
    document.shopForm.price.value=25384+11682;
   }
      if(BlueA=="people" && BlueB=="oil" && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="3" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
   {
    document.shopForm.price.value="31198";
   }
    if(BlueA=="people" && BlueB=="oil" && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="3" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Yen")
   {
    document.shopForm.price.value=31198+11682;
   }

    //oil
    if(BlueA=="people" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
   {
    document.shopForm.price.value="23998";
   }
     if(BlueA=="people" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Yen")
   {
    document.shopForm.price.value=23998+12862;
   }
      if(BlueA=="people" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
   {
    document.shopForm.price.value="31198";
   }
   if(BlueA=="people" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Yen")
   {
    document.shopForm.price.value=31198+12862;
   }
      if(BlueA=="people" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="3" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
   {
    document.shopForm.price.value="381";
   }     
     if(BlueA=="people" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="3" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Yen")
   {
    document.shopForm.price.value=38397+12862;
   }
    if(BlueA=="people" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="4" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
   {
    document.shopForm.price.value="45597";
   }
     if(BlueA=="people" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="4" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Yen")
   {
    document.shopForm.price.value=45597+12862;
   }
     if(BlueA=="people" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="5" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
   {
    document.shopForm.price.value="52796";
   }
     if(BlueA=="people" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="5" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Yen")
   {
    document.shopForm.price.value=52796+12862;
   }
   //----------------------------------------
       if(BlueA=="people" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
   {
    document.shopForm.price.value="29998";
   }
    if(BlueA=="people" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Yen")
   {
    document.shopForm.price.value=29998+15222;
   }
      if(BlueA=="people" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
   {
    document.shopForm.price.value="38997";
   }
        if(BlueA=="people" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Yen")
   {
    document.shopForm.price.value=38997+15222;
   }
      if(BlueA=="people" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="3" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
   {
    document.shopForm.price.value="47997";
   }     
       if(BlueA=="people" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="3" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Yen")
   {
    document.shopForm.price.value=47997+15222;
   }
    if(BlueA=="people" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="4" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
   {
    document.shopForm.price.value="56996";
   }
   if(BlueA=="people" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="4" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Yen")
   {
    document.shopForm.price.value=56996+15222;
   }
     if(BlueA=="people" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="5" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
   {
    document.shopForm.price.value="65996";
   }
      if(BlueA=="people" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="5" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Yen")
   {
    document.shopForm.price.value=65996+15222;
   }
       if(BlueA=="people" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="6" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
   {
    document.shopForm.price.value="74995";
   }
        if(BlueA=="people" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="6" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Yen")
   {
    document.shopForm.price.value=74995+15222;
   }
     if(BlueA=="people" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="7" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
   {
    document.shopForm.price.value="80995";
   }
        if(BlueA=="people" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="7" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Yen")
   {
    document.shopForm.price.value=80995+15222;
   }
  //------------------------------------------------------
    if(BlueA=="people" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
   {
    document.shopForm.price.value="37498";
   }
     if(BlueA=="people" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Yen")
   {
    document.shopForm.price.value=37498+19942;
   }
      if(BlueA=="people" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
   {
    document.shopForm.price.value="48747";
   }
      if(BlueA=="people" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Yen")
   {
    document.shopForm.price.value=48747+19942;
   }
      if(BlueA=="people" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="3" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
   {
    document.shopForm.price.value="59996";
   }     
       if(BlueA=="people" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="3" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Yen")
   {
    document.shopForm.price.value=59996+19942;
   }
    if(BlueA=="people" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="4" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
   {
    document.shopForm.price.value="71245";
   }
        if(BlueA=="people" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="4" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Yen")
   {
    document.shopForm.price.value=71245+19942;
   }
     if(BlueA=="people" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="5" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
   {
    document.shopForm.price.value="82495";
   }
         if(BlueA=="people" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="5" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Yen")
   {
    document.shopForm.price.value=82495+19942;
   }
       if(BlueA=="people" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="6" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
   {
    document.shopForm.price.value="93744";
   }
         if(BlueA=="people" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="6" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Yen")
   {
    document.shopForm.price.value=93744+19942;
   }
     if(BlueA=="people" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="7" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
   {
    document.shopForm.price.value="101243";
   }
    if(BlueA=="people" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="7" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Yen")
   {
    document.shopForm.price.value=101243+19942;
   }
    //---------------------------------------------------
    if(BlueA=="people" && BlueB=="oil" && BlueC=="36 x 48 Inches (90 x 120 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
   {
    document.shopForm.price.value="44997";
   }
      if(BlueA=="people" && BlueB=="oil" && BlueC=="36 x 48 Inches (90 x 120 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
   {
    document.shopForm.price.value="58496";
   }
      if(BlueA=="people" && BlueB=="oil" && BlueC=="36 x 48 Inches (90 x 120 cm)" && BlueD=="3" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
   {
    document.shopForm.price.value="71995";
   }     
    if(BlueA=="people" && BlueB=="oil" && BlueC=="36 x 48 Inches (90 x 120 cm)" && BlueD=="4" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
   {
    document.shopForm.price.value="85494";
   }
     if(BlueA=="people" && BlueB=="oil" && BlueC=="36 x 48 Inches (90 x 120 cm)" && BlueD=="5" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
   {
    document.shopForm.price.value="98993";
   }
       if(BlueA=="people" && BlueB=="oil" && BlueC=="36 x 48 Inches (90 x 120 cm)" && BlueD=="6" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
   {
    document.shopForm.price.value="112493";
   }
     if(BlueA=="people" && BlueB=="oil" && BlueC=="36 x 48 Inches (90 x 120 cm)" && BlueD=="7" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
   {
    document.shopForm.price.value="121492";
   }

    //---------------------------------------------------
   if(BlueA=="people" && BlueB=="oil" && BlueC=="48 x 72 Inches (120 x 180 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
   {
    document.shopForm.price.value="59996";
   }
      if(BlueA=="people" && BlueB=="oil" && BlueC=="48 x 72 Inches (120 x 180 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
   {
    document.shopForm.price.value="77995";
   }
      if(BlueA=="people" && BlueB=="oil" && BlueC=="48 x 72 Inches (120 x 180 cm)" && BlueD=="3" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
   {
    document.shopForm.price.value="95994";
   }     
    if(BlueA=="people" && BlueB=="oil" && BlueC=="48 x 72 Inches (120 x 180 cm)" && BlueD=="4" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
   {
    document.shopForm.price.value="113992";
   }
     if(BlueA=="people" && BlueB=="oil" && BlueC=="48 x 72 Inches (120 x 180 cm)" && BlueD=="5" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
   {
    document.shopForm.price.value="131991";
   }
       if(BlueA=="people" && BlueB=="oil" && BlueC=="48 x 72 Inches (120 x 180 cm)" && BlueD=="6" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
   {
    document.shopForm.price.value="149990";
   }
     if(BlueA=="people" && BlueB=="oil" && BlueC=="48 x 72 Inches (120 x 180 cm)" && BlueD=="7" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
   {
    document.shopForm.price.value="161989";
   }
   //////////////////////////////////-------------------Charcoal Portrait, people (USD)----/////////////////////////////////////
	  //oil
  if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
   {
    document.shopForm.price.value="11000";
   }
     if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Yen")
   {
    document.shopForm.price.value=11000+10502;
   }
    if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
   {
    document.shopForm.price.value="14300";
   }
    if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Yen")
   {
    document.shopForm.price.value=14300+10502;
   }
   //---------------------------------------
      if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
   {
    document.shopForm.price.value="14300";
   }
    if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Yen")
   {
    document.shopForm.price.value=14300+11682;
   }
      if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
   {
    document.shopForm.price.value="18590";
   }
    if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Yen")
   {
    document.shopForm.price.value=18590+11682;
   }
     //---------------------------------------
    if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
   {
    document.shopForm.price.value="17600";
   }
     if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Yen")
   {
    document.shopForm.price.value=17600+12862;
   }
      if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
   {
    document.shopForm.price.value="22880";
   }
      if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Yen")
   {
    document.shopForm.price.value=22880+12862;
   }
   //----------------------------------------
    if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
   {
    document.shopForm.price.value="22000";
   }
    if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Yen")
   {
    document.shopForm.price.value=22000+15222;
   }
      if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
   {
    document.shopForm.price.value="28600";
   }
      if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Yen")
   {
    document.shopForm.price.value=28600+15222;
   }
  //------------------------------------------------------
   if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
   {
    document.shopForm.price.value="27500";
   }
       if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Yen")
   {
    document.shopForm.price.value=27500+19942;
   }
      if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
   {
    document.shopForm.price.value="35750";
   }
       if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Yen")
   {
    document.shopForm.price.value=35750+19942;
   } 
	  ////-------------------------------------------
	   if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="36 x 48 Inches (90 x 120 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
   {
    document.shopForm.price.value="33000";
   }
      
      if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="36 x 48 Inches (90 x 120 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
   {
    document.shopForm.price.value="42900";
   }
   	  ////-------------------------------------------
	   if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="48 x 72 Inches (120 x 180 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
   {
    document.shopForm.price.value="44000";
   }
      
      if(BlueA=="pet / animal" && BlueB=="oil" && BlueC=="48 x 72 Inches (120 x 180 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
   {
    document.shopForm.price.value="52700";
   }
	  
	  //-------------------
	   if(BlueA=="landscape / house / vehicle" && BlueB=="oil" && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
   {
    document.shopForm.price.value="9999";
   }
     if(BlueA=="landscape / house / vehicle" && BlueB=="oil" && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Yen")
   {
    document.shopForm.price.value=9999+10502;
   }
   //---------------------------------------
      if(BlueA=="landscape / house / vehicle" && BlueB=="oil" && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
   {
    document.shopForm.price.value="12999";
   }
    if(BlueA=="landscape / house / vehicle" && BlueB=="oil" && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Yen")
   {
    document.shopForm.price.value=12999+11682;
   }
     //---------------------------------------
    if(BlueA=="landscape / house / vehicle" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
   {
    document.shopForm.price.value="15998";
   }
     if(BlueA=="landscape / house / vehicle" && BlueB=="oil" && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Yen")
   {
    document.shopForm.price.value=15998+12862;
   }
    
   //----------------------------------------
    if(BlueA=="landscape / house / vehicle" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
   {
    document.shopForm.price.value="19998";
   }
    if(BlueA=="landscape / house / vehicle" && BlueB=="oil" && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Yen")
   {
    document.shopForm.price.value=19998+15222;
   }
    
  //------------------------------------------------------
   if(BlueA=="landscape / house / vehicle" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
   {
    document.shopForm.price.value="24998";
   }
   if(BlueA=="landscape / house / vehicle" && BlueB=="oil" && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Yen")
   {
    document.shopForm.price.value=24998+19942;
   }
       if(BlueA=="landscape / house / vehicle" && BlueB=="oil" && BlueC=="36 x 48 Inches (90 x 120 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
   {
    document.shopForm.price.value="29997";
   }
         if(BlueA=="landscape / house / vehicle" && BlueB=="oil" && BlueC=="48 x 72 Inches (120 x 180 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
   {
    document.shopForm.price.value="39996";
   }
   
   /////////////////////////////start Charcoal
   
   
   
    if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value="71";
   }
     if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value=71+89;
   }
    if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value="92";
   }
    if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value=92+89;
   }
   //---------------------------------------
      if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value="92";
   }
    if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value=92+99;
   }
      if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value="120";
   }
    if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value=120+99;
   }
     //---------------------------------------
    if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value="113";
   }
     if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value=113+109;
   }
      if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value="147";
   }
      if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value=147+109;
   }
   //----------------------------------------
    if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value="142";
   }
    if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value=142+129;
   }
      if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value="184";
   }
      if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value=184+129;
   }
  //------------------------------------------------------
   if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value="177";
   }
       if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value=177+169;
   }
      if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value="230";
   }
       if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value=230+169;
   } 
	  ////-------------------------------------------
	  //-------------------
	   if(BlueA=="landscape / house / vehicle" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value="64";
   }
     if(BlueA=="landscape / house / vehicle" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value=64+89;
   }
   //---------------------------------------
      if(BlueA=="landscape / house / vehicle" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value="84";
   }
    if(BlueA=="landscape / house / vehicle" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value=84+99;
   }
     //---------------------------------------
    if(BlueA=="landscape / house / vehicle" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value="103";
   }
     if(BlueA=="landscape / house / vehicle" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value=103+109;
   }
    
   //----------------------------------------
    if(BlueA=="landscape / house / vehicle" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value="129";
   }
    if(BlueA=="landscape / house / vehicle" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value=129+129;
   }
    
  //------------------------------------------------------
   if(BlueA=="landscape / house / vehicle" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value="161";
   }
   if(BlueA=="landscape / house / vehicle" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="U.S. Dollars")
   {
    document.shopForm.price.value=161+169;
   }
       
	  
  ///////////////////////////////////////////////////*/In GBP or Pounds Sterling
    
  
  if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
{
    document.shopForm.price.value="45";
}

if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Pounds Sterling")
{
    document.shopForm.price.value=45+43;
}

if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
{
    document.shopForm.price.value="58";
}

if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Pounds Sterling")
{
    document.shopForm.price.value=58+43;
}

	      if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value="58";
   }
      if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value=58+48;
   }
      if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value="76";
   }
       if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value=76+48;
   }
      if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="3" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value="93";
   }
    if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="3" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value=93+48;
   }

    
    if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value="72";
   }
     if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value=72+53;
   }
      if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value="93";
   }
   if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value=93+53;
   }
      if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="3" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value="115";
   }     
     if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="3" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value=115+53;
   }
    if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="4" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value="136";
   }
     if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="4" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value=136+53;
   }
     if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="5" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value="158";
   }
     if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="5" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value=158+53;
   }
   //----------------------------------------
       if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value="90";
   }
    if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value=90+63;
   }
      if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value="117";
   }
        if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value=117+63;
   }
      if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="3" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value="144";
   }     
       if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="3" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value=144+63;
   }
    if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="4" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value="170";
   }
   if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="4" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value=170+63;
   }
     if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="5" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value="197";
   }
      if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="5" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value=197+63;
   }
       if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="6" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value="224";
   }
        if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="6" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value=224+63;
   }
     if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="7" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value="242";
   }
        if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="7" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value=242+63;
   }
  //------------------------------------------------------
    if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value="112";
   }
     if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value=112+82;
   }
      if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value="146";
   }
      if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value=146+82;
   }
      if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="3" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value="179";
   }     
       if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="3" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value=179+82;
   }
    if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="4" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value="213";
   }
        if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="4" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value=213+82;
   }
     if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="5" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value="247";
   }
         if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="5" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value=247+82;
   }
       if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="6" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value="280";
   }
         if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="6" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value=280+82;
   }
     if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="7" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value="303";
   }
    if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="7" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value=303+82;
   }
    //---------------------------------------------------
   
   //////////////////////////////////-------------------Charcoal Portrait, people (GBP)----/////////////////////////////////////
	 
  if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value="36";
   }
     if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value=36+43;
   }
    if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value="46";
   }
    if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value=46+43;
   }
   //---------------------------------------
      if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value="46";
   }
    if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value=46+48;
   }
      if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value="60";
   }
    if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value=60+48;
   }
     //---------------------------------------
    if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value="57";
   }
     if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value=57+53;
   }
      if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value="74";
   }
      if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value=74+53;
   }
   //----------------------------------------
    if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value="72";
   }
    if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value=72+53;
   }
      if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value="93";
   }
      if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value=93+53;
   }
  //------------------------------------------------------
   if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value="89";
   }
       if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value=89+82;
   }
      if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value="116";
   }
       if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value=116+82;
   } 
	  ////-------------------------------------------
	 
	   if(BlueA=="landscape / house / vehicle" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value="32";
   }
     if(BlueA=="landscape / house / vehicle" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value=32+43;
   }
   //---------------------------------------
      if(BlueA=="landscape / house / vehicle" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value="41";
   }
    if(BlueA=="landscape / house / vehicle" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value=41+48;
   }
     //---------------------------------------
    if(BlueA=="landscape / house / vehicle" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value="51";
   }
     if(BlueA=="landscape / house / vehicle" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value=51+53;
   }
    
   //----------------------------------------
    if(BlueA=="landscape / house / vehicle" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value="64";
   }
    if(BlueA=="landscape / house / vehicle" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value=64+63;
   }
    
  //------------------------------------------------------
   if(BlueA=="landscape / house / vehicle" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value="80";
   }
   if(BlueA=="landscape / house / vehicle" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Pounds Sterling")
   {
    document.shopForm.price.value=80+82;
   }
      
   //////////////////////////////////////Oil For Eurp
   if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
{
    document.shopForm.price.value="58";
}

if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Euros")
{
    document.shopForm.price.value=58+64;
}

if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
{
    document.shopForm.price.value="75";
}

if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Euros")
{
    document.shopForm.price.value=75+64;
}

	      if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
   {
    document.shopForm.price.value="75";
   }
      if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Euros")
   {
    document.shopForm.price.value=75+72;
   }
      if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
   {
    document.shopForm.price.value="98";
   }
       if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Euros")
   {
    document.shopForm.price.value=98+72;
   }
      if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="3" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
   {
    document.shopForm.price.value="120";
   }
    if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="3" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Euros")
   {
    document.shopForm.price.value=120+72;
   }

    //oil
    if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
   {
    document.shopForm.price.value="93";
   }
     if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Euros")
   {
    document.shopForm.price.value=93+79;
   }
      if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
   {
    document.shopForm.price.value="120";
   }
   if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Euros")
   {
    document.shopForm.price.value=120+79;
   }
      if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="3" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
   {
    document.shopForm.price.value="148";
   }     
     if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="3" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Euros")
   {
    document.shopForm.price.value=148+79;
   }
    if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="4" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
   {
    document.shopForm.price.value="176";
   }
     if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="4" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Euros")
   {
    document.shopForm.price.value=176+79;
   }
     if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="5" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
   {
    document.shopForm.price.value="204";
   }
     if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="5" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Euros")
   {
    document.shopForm.price.value=204+79;
   }
   //----------------------------------------
       if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
   {
    document.shopForm.price.value="116";
   }
    if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Euros")
   {
    document.shopForm.price.value=116+94;
   }
      if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
   {
    document.shopForm.price.value="150";
   }
        if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Euros")
   {
    document.shopForm.price.value=150+94;
   }
      if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="3" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
   {
    document.shopForm.price.value="185";
   }     
       if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="3" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Euros")
   {
    document.shopForm.price.value=185+94;
   }
    if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="4" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
   {
    document.shopForm.price.value="220";
   }
   if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="4" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Euros")
   {
    document.shopForm.price.value=220+94;
   }
     if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="5" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
   {
    document.shopForm.price.value="255";
   }
      if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="5" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Euros")
   {
    document.shopForm.price.value=255+94;
   }
       if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="6" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
   {
    document.shopForm.price.value="289";
   }
        if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="6" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Euros")
   {
    document.shopForm.price.value=289+94;
   }
     if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="7" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
   {
    document.shopForm.price.value="312";
   }
        if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="7" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Euros")
   {
    document.shopForm.price.value=312+94;
   }
  //------------------------------------------------------
    if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
   {
    document.shopForm.price.value="145";
   }
     if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Euros")
   {
    document.shopForm.price.value=145+123;
   }
      if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
   {
    document.shopForm.price.value="188";
   }
      if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Euros")
   {
    document.shopForm.price.value=188+123;
   }
      if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="3" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
   {
    document.shopForm.price.value="231";
   }     
       if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="3" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Euros")
   {
    document.shopForm.price.value=231+123;
   }
    if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="4" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
   {
    document.shopForm.price.value="275";
   }
        if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="4" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Euros")
   {
    document.shopForm.price.value=275+123;
   }
     if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="5" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
   {
    document.shopForm.price.value="318";
   }
         if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="5" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Euros")
   {
    document.shopForm.price.value=318+123;
   }
       if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="6" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
   {
    document.shopForm.price.value="362";
   }
         if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="6" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Euros")
   {
    document.shopForm.price.value=362+123;
   }
     if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="7" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
   {
    document.shopForm.price.value="390";
   }
    if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="7" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Euros")
   {
    document.shopForm.price.value=390+123;
   }
    //---------------------------------------------------
   
   //////////////////////////////////-------------------Charcoal Portrait, pet(euro)----/////////////////////////////////////
	  
  if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
   {
    document.shopForm.price.value="45";
   }
     if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Euros")
   {
    document.shopForm.price.value=45+64;
   }
    if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
   {
    document.shopForm.price.value="58";
   }
    if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Euros")
   {
    document.shopForm.price.value=58+64;
   }
   //---------------------------------------
      if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
   {
    document.shopForm.price.value="58";
   }
    if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Euros")
   {
    document.shopForm.price.value=58+72;
   }
      if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
   {
    document.shopForm.price.value="76";
   }
    if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Euros")
   {
    document.shopForm.price.value=76+72;
   }
     //---------------------------------------
    if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
   {
    document.shopForm.price.value="72";
   }
     if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Euros")
   {
    document.shopForm.price.value=72+79;
   }
      if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
   {
    document.shopForm.price.value="93";
   }
      if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Euros")
   {
    document.shopForm.price.value=93+79;
   }
   //----------------------------------------
    if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
   {
    document.shopForm.price.value="90";
   }
    if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Euros")
   {
    document.shopForm.price.value=90+94;
   }
      if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
   {
    document.shopForm.price.value="117";
   }
      if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Euros")
   {
    document.shopForm.price.value=117+94;
   }
  //------------------------------------------------------
   if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
   {
    document.shopForm.price.value="112";
   }
       if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Euros")
   {
    document.shopForm.price.value=112+123;
   }
      if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
   {
    document.shopForm.price.value="146";
   }
       if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Euros")
   {
    document.shopForm.price.value=146+123;
   } 
	  ////-------------------------------------------
	   
	   if(BlueA=="landscape / house / vehicle" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
   {
    document.shopForm.price.value="38";
   }
     if(BlueA=="landscape / house / vehicle" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Euros")
   {
    document.shopForm.price.value=38+64;
   }
   //---------------------------------------
      if(BlueA=="landscape / house / vehicle" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
   {
    document.shopForm.price.value="50";
   }
    if(BlueA=="landscape / house / vehicle" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Euros")
   {
    document.shopForm.price.value=50+72;
   }
     //---------------------------------------
    if(BlueA=="landscape / house / vehicle" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
   {
    document.shopForm.price.value="61";
   }
     if(BlueA=="landscape / house / vehicle" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Euros")
   {
    document.shopForm.price.value=61+79;
   }
    
   //----------------------------------------
    if(BlueA=="landscape / house / vehicle" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
   {
    document.shopForm.price.value="77";
   }
    if(BlueA=="landscape / house / vehicle" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Euros")
   {
    document.shopForm.price.value=77+94;
   }
    
  //------------------------------------------------------
   if(BlueA=="landscape / house / vehicle" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Euros")
   {
    document.shopForm.price.value="96";
   }
   if(BlueA=="landscape / house / vehicle" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Euros")
   {
    document.shopForm.price.value=96+123;
   }
       
   /////////////////////////////////////End Oil For Eurp
   ////////////////////////////////////Begin Oil For Cand

if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
{
    document.shopForm.price.value="93";
}

if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Canadian Dollars")
{
    document.shopForm.price.value=93+94;
}

if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
{
    document.shopForm.price.value="121";
}

if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Canadian Dollars")
{
    document.shopForm.price.value=121+94;
}

	      if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value="121";
   }
      if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value=121+104;
   }
      if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value="157";
   }
       if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value=157+104;
   }
      if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="3" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value="193";
   }
    if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="3" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value=193+104;
   }

    //oil
    if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value="149";
   }
     if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value=149+115;
   }
      if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value="193";
   }
   if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value=193+115;
   }
      if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="3" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value="238";
   }     
     if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="3" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value=238+115;
   }
    if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="4" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value="283";
   }
     if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="4" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value=283+115;
   }
     if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="5" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value="327";
   }
     if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="5" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value=327+115;
   }
   //----------------------------------------
       if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value="186";
   }
    if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value=186+136;
   }
      if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value="242";
   }
        if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value=242+136;
   }
      if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="3" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value="297";
   }     
       if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="3" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value=297+136;
   }
    if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="4" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value="353";
   }
   if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="4" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value=353+136;
   }
     if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="5" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value="409";
   }
      if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="5" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value=409+136;
   }
       if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="6" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value="465";
   }
        if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="6" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value=465+136;
   }
     if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="7" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value="502";
   }
        if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="7" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value=502+136;
   }
  //------------------------------------------------------
    if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value="232";
   }
     if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value=232+179;
   }
      if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value="302";
   }
      if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value=302+179;
   }
      if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="3" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value="372";
   }     
       if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="3" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value=372+179;
   }
    if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="4" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value="442";
   }
        if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="4" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value=442+179;
   }
     if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="5" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value="511";
   }
         if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="5" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value=511+179;
   }
       if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="6" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value="581";
   }
         if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="6" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value=581+179;
   }
     if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="7" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value="627";
   }
    if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="7" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value=627+179;
   }
    //---------------------------------------------------
       //////////////////////////////////-------------------Charcoal Portrait, pet / animal
       
  if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value="71";
   }
     if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value=71+94;
   }
    if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value="92";
   }
    if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value=92+94;
   }
   //---------------------------------------
      if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value="92";
   }
    if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value=92+104;
   }
      if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value="120";
   }
    if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value=120+104;
   }
     //---------------------------------------
    if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value="113";
   }
     if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value=113+115;
   }
      if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value="147";
   }
      if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value=147+115;
   }
   //----------------------------------------
    if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value="142";
   }
    if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value=142+136;
   }
      if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value="184";
   }
      if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value=184+136;
   }
  //------------------------------------------------------
   if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value="177";
   }
       if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value=177+179;
   }
      if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value="230";
   }
       if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value=230+179;
   } 
	  ////-------------------------------------------
	   
	   if(BlueA=="landscape / house / vehicle" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value="64";
   }
     if(BlueA=="landscape / house / vehicle" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value=64+94;
   }
   //---------------------------------------
      if(BlueA=="landscape / house / vehicle" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value="84";
   }
    if(BlueA=="landscape / house / vehicle" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value=84+104;
   }
     //---------------------------------------
    if(BlueA=="landscape / house / vehicle" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value="103";
   }
     if(BlueA=="landscape / house / vehicle" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value=103+115;
   }
    
   //----------------------------------------
    if(BlueA=="landscape / house / vehicle" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value="129";
   }
    if(BlueA=="landscape / house / vehicle" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value=129+136;
   }
    
  //------------------------------------------------------
   if(BlueA=="landscape / house / vehicle" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value="161";
   }
   if(BlueA=="landscape / house / vehicle" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Canadian Dollars")
   {
    document.shopForm.price.value=161+179;
   }
       

   ////////////////////////////////////End Oil For Candada
   ////////////////////////////////////Begin Oil For Austrl
  

if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
{
    document.shopForm.price.value="97";
}

if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Australian Dollars")
{
    document.shopForm.price.value=97+105;
}

if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
{
    document.shopForm.price.value="126";
}

if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Australian Dollars")
{
    document.shopForm.price.value=126+105;
}

	      if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value="126";
   }
      if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value=126+116;
   }
      if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value="164";
   }
       if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value=164+116;
   }
      if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="3" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value="201";
   }
    if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="3" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value=201+116;
   }

    //oil
    if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value="155";
   }
     if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value=155+128;
   }
      if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value="201";
   }
   if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value=201+128;
   }
      if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="3" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value="248";
   }     
     if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="3" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value=248+128;
   }
    if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="4" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value="294";
   }
     if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="4" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value=294+128;
   }
     if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="5" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value="341";
   }
     if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="5" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value=341+128;
   }
   //----------------------------------------
////////       if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
////////   {
////////    document.shopForm.price.value="298";
////////   }
////////    if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Australian Dollars")
////////   {
////////    document.shopForm.price.value=298+152;
////////   }
      if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value="252";
   }
        if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value=252+152;
   }
      if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="3" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value="310";
   }     
       if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="3" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value=310+152;
   }
    if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="4" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value="368";
   }
   if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="4" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value=368+152;
   }
     if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="5" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value="426";
   }
      if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="5" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value=426+152;
   }
       if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="6" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value="484";
   }
        if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="6" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value=484+152;
   }
     if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="7" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value="523";
   }
        if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="7" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value=523+152;
   }
  //------------------------------------------------------
////////    if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
////////   {
////////    document.shopForm.price.value="373";
////////   }
////////     if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Australian Dollars")
////////   {
////////    document.shopForm.price.value=373+199;
////////   }
////////      if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
////////   {
////////    document.shopForm.price.value="484";
////////   }
////////      if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Australian Dollars")
////////   {
////////    document.shopForm.price.value=484+199;
////////   }
////////      if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="3" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
////////   {
////////    document.shopForm.price.value="596";
////////   }     
////////       if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="3" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Australian Dollars")
////////   {
////////    document.shopForm.price.value=596+199;
////////   }
////////    if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="4" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
////////   {
////////    document.shopForm.price.value="708";
////////   }
////////        if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="4" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Australian Dollars")
////////   {
////////    document.shopForm.price.value=708+199;
////////   }
////////     if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="5" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
////////   {
////////    document.shopForm.price.value="820";
////////   }
////////         if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="5" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Australian Dollars")
////////   {
////////    document.shopForm.price.value=820+199;
////////   }
////////       if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="6" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
////////   {
////////    document.shopForm.price.value="931";
////////   }
////////         if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="6" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Australian Dollars")
////////   {
////////    document.shopForm.price.value=931+199;
////////   }
////////     if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="7" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
////////   {
////////    document.shopForm.price.value="1006";
////////   }
////////    if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="7" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Australian Dollars")
////////   {
////////    document.shopForm.price.value=1006+199;
////////   }
    //---------------------------------------------------
   
   //////////////////////////////////-------------------Charcoal Portrait, people (USD)----/////////////////////////////////////
	  //oil
  if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value="76";
   }
     if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value=76+105;
   }
    if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value="99";
   }
    if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value=99+105;
   }
   //---------------------------------------
      if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value="99";
   }
    if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value=99+116;
   }
      if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value="129";
   }
    if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value=129+116;
   }
     //---------------------------------------
    if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value="122";
   }
     if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value=122+128;
   }
      if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value="158";
   }
      if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value=158+128;
   }
   //----------------------------------------
    if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value="152";
   }
    if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value=152+152;
   }
      if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value="198";
   }
      if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value=198+152;
   }
  //------------------------------------------------------
////////   if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
////////   {
////////    document.shopForm.price.value="293";
////////   }
////////       if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Australian Dollars")
////////   {
////////    document.shopForm.price.value=293+199;
////////   }
////////      if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
////////   {
////////    document.shopForm.price.value="380";
////////   }
////////       if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Australian Dollars")
////////   {
////////    document.shopForm.price.value=380+199;
////////   } 
	  ////-------------------------------------------
	   
	  
	  //-------------------
	   if(BlueA=="landscape / house / vehicle" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value="70";
   }
     if(BlueA=="landscape / house / vehicle" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value=70+105;
   }
   //---------------------------------------
      if(BlueA=="landscape / house / vehicle" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value="90";
   }
    if(BlueA=="landscape / house / vehicle" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value=90+116;
   }
     //---------------------------------------
    if(BlueA=="landscape / house / vehicle" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value="111";
   }
     if(BlueA=="landscape / house / vehicle" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value=111+128;
   }
    
   //----------------------------------------
    if(BlueA=="landscape / house / vehicle" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value="139";
   }
    if(BlueA=="landscape / house / vehicle" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Australian Dollars")
   {
    document.shopForm.price.value=139+152;
   }
    
  //------------------------------------------------------
////////   if(BlueA=="landscape / house / vehicle" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Australian Dollars")
////////   {
////////    document.shopForm.price.value="248";
////////   }
  
   ////////////////////////////End For Austral
   ///////////////////////////Begin Japan
   

if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
{
    document.shopForm.price.value="9749";
}

if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Yen")
{
    document.shopForm.price.value=9749+10502;
}

if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
{
    document.shopForm.price.value="12674";
}

if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Yen")
{
    document.shopForm.price.value=12674+10502;
}

	      if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
   {
    document.shopForm.price.value="12674";
   }
      if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Yen")
   {
    document.shopForm.price.value=12674+11682;
   }
      if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
   {
    document.shopForm.price.value="16476";
   }
       if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Yen")
   {
    document.shopForm.price.value=16476+11682;
   }
      if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="3" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
   {
    document.shopForm.price.value="20279";
   }
    if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="3" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Yen")
   {
    document.shopForm.price.value=20279+11682;
   }

    //oil
    if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
   {
    document.shopForm.price.value="15599";
   }
     if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Yen")
   {
    document.shopForm.price.value=15599+12862;
   }
      if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
   {
    document.shopForm.price.value="20279";
   }
   if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Yen")
   {
    document.shopForm.price.value=20279+12862;
   }
      if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="3" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
   {
    document.shopForm.price.value="24958";
   }     
     if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="3" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Yen")
   {
    document.shopForm.price.value=24958+12862;
   }
    if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="4" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
   {
    document.shopForm.price.value="29638";
   }
     if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="4" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Yen")
   {
    document.shopForm.price.value=29638+12862;
   }
     if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="5" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
   {
    document.shopForm.price.value="34318";
   }
     if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="5" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Yen")
   {
    document.shopForm.price.value=34318+12862;
   }
   //----------------------------------------
       if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
   {
    document.shopForm.price.value="19499";
   }
    if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Yen")
   {
    document.shopForm.price.value=19499+15222;
   }
      if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
   {
    document.shopForm.price.value="25348";
   }
        if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Yen")
   {
    document.shopForm.price.value=25348+15222;
   }
      if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="3" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
   {
    document.shopForm.price.value="31198";
   }     
       if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="3" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Yen")
   {
    document.shopForm.price.value=31198+15222;
   }
    if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="4" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
   {
    document.shopForm.price.value="37048";
   }
   if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="4" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Yen")
   {
    document.shopForm.price.value=37048+15222;
   }
     if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="5" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
   {
    document.shopForm.price.value="42897";
   }
      if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="5" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Yen")
   {
    document.shopForm.price.value=42897+15222;
   }
       if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="6" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
   {
    document.shopForm.price.value="48747";
   }
        if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="6" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Yen")
   {
    document.shopForm.price.value=48747+15222;
   }
     if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="7" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
   {
    document.shopForm.price.value="52646";
   }
        if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="7" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Yen")
   {
    document.shopForm.price.value=52646+15222;
   }
  //------------------------------------------------------
////////    if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
////////   {
////////    document.shopForm.price.value="37498";
////////   }
////////     if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Yen")
////////   {
////////    document.shopForm.price.value=37498+19942;
////////   }
////////      if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
////////   {
////////    document.shopForm.price.value="48747";
////////   }
////////      if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Yen")
////////   {
////////    document.shopForm.price.value=48747+19942;
////////   }
////////      if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="3" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
////////   {
////////    document.shopForm.price.value="59996";
////////   }     
////////       if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="3" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Yen")
////////   {
////////    document.shopForm.price.value=59996+19942;
////////   }
////////    if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="4" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
////////   {
////////    document.shopForm.price.value="71245";
////////   }
////////        if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="4" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Yen")
////////   {
////////    document.shopForm.price.value=71245+19942;
////////   }
////////     if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="5" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
////////   {
////////    document.shopForm.price.value="82495";
////////   }
////////         if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="5" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Yen")
////////   {
////////    document.shopForm.price.value=82495+19942;
////////   }
////////       if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="6" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
////////   {
////////    document.shopForm.price.value="93744";
////////   }
////////         if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="6" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Yen")
////////   {
////////    document.shopForm.price.value=93744+19942;
////////   }
////////     if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="7" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
////////   {
////////    document.shopForm.price.value="101243";
////////   }
////////    if(BlueA=="people" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="7" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Yen")
////////   {
////////    document.shopForm.price.value=101243+19942;
////////   }
    //---------------------------------------------------
   
   //////////////////////////////////-------------------Charcoal Portrait, people (USD)----/////////////////////////////////////
	  //oil
  if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
   {
    document.shopForm.price.value="7150";
   }
     if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Yen")
   {
    document.shopForm.price.value=7150+10502;
   }
    if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
   {
    document.shopForm.price.value="9295";
   }
    if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Yen")
   {
    document.shopForm.price.value=9295+10502;
   }
   //---------------------------------------
      if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
   {
    document.shopForm.price.value="9295";
   }
    if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Yen")
   {
    document.shopForm.price.value=9295+11682;
   }
      if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
   {
    document.shopForm.price.value="12084";
   }
    if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Yen")
   {
    document.shopForm.price.value=12084+11682;
   }
     //---------------------------------------
    if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
   {
    document.shopForm.price.value="11440";
   }
     if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Yen")
   {
    document.shopForm.price.value=11440+12862;
   }
      if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
   {
    document.shopForm.price.value="14872";
   }
      if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Yen")
   {
    document.shopForm.price.value=14872+12862;
   }
   //----------------------------------------
    if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
   {
    document.shopForm.price.value="14300";
   }
    if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Yen")
   {
    document.shopForm.price.value=14300+15222;
   }
      if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
   {
    document.shopForm.price.value="18590";
   }
      if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Yen")
   {
    document.shopForm.price.value=18590+15222;
   }
  //------------------------------------------------------
////   if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
////   {
////    document.shopForm.price.value="27500";
////   }
////       if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Yen")
////   {
////    document.shopForm.price.value=27500+19942;
////   }
////      if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="2" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
////   {
////    document.shopForm.price.value="35750";
////   }
////       if(BlueA=="pet / animal" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="2" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Yen")
////   {
////    document.shopForm.price.value=35750+19942;
////   } 
	  ////-------------------------------------------
	   
	  
	  //-------------------
	   if(BlueA=="landscape / house / vehicle" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
   {
    document.shopForm.price.value="6499";
   }
     if(BlueA=="landscape / house / vehicle" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="12 x 16 Inches (30 x 40 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Yen")
   {
    document.shopForm.price.value=6499+10502;
   }
   //---------------------------------------
      if(BlueA=="landscape / house / vehicle" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
   {
    document.shopForm.price.value="8449";
   }
    if(BlueA=="landscape / house / vehicle" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="16 x 20 Inches (40 x 50 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Yen")
   {
    document.shopForm.price.value=8449+11682;
   }
     //---------------------------------------
    if(BlueA=="landscape / house / vehicle" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
   {
    document.shopForm.price.value="10399";
   }
     if(BlueA=="landscape / house / vehicle" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="20 x 24 Inches (50 x 60 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Yen")
   {
    document.shopForm.price.value=10399+12862;
   }
    
   //----------------------------------------
    if(BlueA=="landscape / house / vehicle" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
   {
    document.shopForm.price.value="12999";
   }
    if(BlueA=="landscape / house / vehicle" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="24 x 36 Inches (60 x 90 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Yen")
   {
    document.shopForm.price.value=12999+15222;
   }
    
  //------------------------------------------------------
////////   if(BlueA=="landscape / house / vehicle" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="1" && BlueE=="Not framed (rolled in a tube)" && BlueF=="Yen")
////////   {
////////    document.shopForm.price.value="24998";
////////   }
////////   if(BlueA=="landscape / house / vehicle" && (BlueB=="charcoal" || BlueB=="pencil") && BlueC=="30 x 40 Inches (75 x 100 cm)" && BlueD=="1" && BlueE=="Stretched canvas (gallery wrap)" && BlueF=="Yen")
////////   {
////////    document.shopForm.price.value=24998+19942;
////////   }
          
   
   ///////////////////////////End Charcoal
   
    BlueG=document.shopForm.send_type.options[document.shopForm.send_type.selectedIndex].text;//照片发送类型
    BlueH=document.shopForm.price.value;//总价
    document.shopForm.initial_price.value =Math.round ( (20 * document.shopForm.price.value) / 100   )
    document.shopForm.hidValue.value=BlueA+"#"+BlueB+"#"+BlueC+"#"+BlueD+"#"+BlueE+"#"+BlueF+"#"+BlueG+"#"+BlueH;	
}


//验证是否为空
function Form_Validator1() {
	Form_Validator(document.shopForm);
}

function Form_Validator(theForm)
{

 if (theForm.send_type.value == "")
  {
    alert("Please Select the 'way you would like to send your photos'");
    theForm.send_type.focus();
    return (false);
  }

 if (theForm.painting_type.value == "Select#0")
  {
    alert("Please Select the Painting Type");
    theForm.painting_type.focus();
    return (false);
  }
  	document.shopForm.painting_subjects_type.disabled = false; 
	theForm.submit();
  	return (true);

 }