function CalculateOrder(form)
{

if (form.os2.value == "Small" && form.os3.value == "1" && form.os4.value == "FREE")
 {
 form.amount.value = 37.50;
 form.item_name.value = "Small Mosaic Reprint - 16 x 20 inches with FREE UPS Ground Shipping";
 }

if (form.os2.value == "Medium" && form.os3.value == "1" && form.os4.value == "FREE")
 {
 form.amount.value = 42.50;
 form.item_name.value = "Medium Mosaic Reprint - 20 x 24 inches with FREE UPS Ground Shipping";
 }

if (form.os2.value == "Large" && form.os3.value == "1" && form.os4.value == "FREE")
 {
 form.amount.value = 50;
 form.item_name.value = "Large Mosaic Reprint - 24 x 36 inches with FREE UPS Ground Shipping";
 }

if (form.os2.value == "Extra Large" && form.os3.value == "1" && form.os4.value == "FREE")
 {
 form.amount.value = 75;
 form.item_name.value = "Extra Large Mosaic Reprint - 30 x 40 inches with FREE UPS Ground Shipping";
 }

if (form.os2.value == "BIG" && form.os3.value == "1" && form.os4.value == "FREE")
 {
 form.amount.value = 100;
 form.item_name.value = "BIG Mosaic Reprint - 40 x 60 inches with FREE UPS Ground Shipping";
 }

if (form.os2.value == "Small" && form.os3.value == "2" && form.os4.value == "FREE")
 {
 form.amount.value = 75;
 form.item_name.value = "2 Small Mosaic Reprints - 16 x 20 inches with FREE UPS Ground Shipping";
 }

if (form.os2.value == "Medium" && form.os3.value == "2" && form.os4.value == "FREE")
 {
 form.amount.value = 85;
 form.item_name.value = "2 Medium Mosaic Reprints - 20 x 24 inches with FREE UPS Ground Shipping";
 }

if (form.os2.value == "Large" && form.os3.value == "2" && form.os4.value == "FREE")
 {
 form.amount.value = 100;
 form.item_name.value = "2 Large Mosaic Reprints - 24 x 36 inches with FREE UPS Ground Shipping";
 }

if (form.os2.value == "Extra Large" && form.os3.value == "2" && form.os4.value == "FREE")
 {
 form.amount.value = 150;
 form.item_name.value = "2 Extra Large Mosaic Reprints - 30 x 40 inches with FREE UPS Ground Shipping";
 }

if (form.os2.value == "BIG" && form.os3.value == "2" && form.os4.value == "FREE")
 {
 form.amount.value = 200;
 form.item_name.value = "2 BIG Mosaic Reprints - 40 x 60 inches with FREE UPS Ground Shipping";
 }

if (form.os2.value == "Small" && form.os3.value == "3" && form.os4.value == "FREE")
 {
 form.amount.value = 112.50;
 form.item_name.value = "3 Small Mosaic Reprints - 16 x 20 inches with FREE UPS Ground Shipping";
 }

if (form.os2.value == "Medium" && form.os3.value == "3" && form.os4.value == "FREE")
 {
 form.amount.value = 127.50;
 form.item_name.value = "3 Medium Mosaic Reprints - 20 x 24 inches with FREE UPS Ground Shipping";
 }

if (form.os2.value == "Large" && form.os3.value == "3" && form.os4.value == "FREE")
 {
 form.amount.value = 150;
 form.item_name.value = "3 Large Mosaic Reprints - 24 x 36 inches with FREE UPS Ground Shipping";
 }

if (form.os2.value == "Extra Large" && form.os3.value == "3" && form.os4.value == "FREE")
 {
 form.amount.value = 225;
 form.item_name.value = "3 Extra Large Mosaic Reprints - 30 x 40 inches with FREE UPS Ground Shipping";
 }

if (form.os2.value == "BIG" && form.os3.value == "3" && form.os4.value == "FREE")
 {
 form.amount.value = 300;
 form.item_name.value = "3 BIG Mosaic Reprints - 40 x 60 inches with FREE UPS Ground Shipping";
 }

if (form.os2.value == "Small" && form.os3.value == "4" && form.os4.value == "FREE")
 {
 form.amount.value = 150;
 form.item_name.value = "4 Small Mosaic Reprints - 16 x 20 inches with FREE UPS Ground Shipping";
 }

if (form.os2.value == "Medium" && form.os3.value == "4" && form.os4.value == "FREE")
 {
 form.amount.value = 170;
 form.item_name.value = "4 Medium Mosaic Reprints - 20 x 24 inches with FREE UPS Ground Shipping";
 }

if (form.os2.value == "Large" && form.os3.value == "4" && form.os4.value == "FREE")
 {
 form.amount.value = 200;
 form.item_name.value = "4 Large Mosaic Reprints - 24 x 36 inches with FREE UPS Ground Shipping";
 }

if (form.os2.value == "Extra Large" && form.os3.value == "4" && form.os4.value == "FREE")
 {
 form.amount.value = 300;
 form.item_name.value = "4 Extra Large Mosaic Reprints - 30 x 40 inches with FREE UPS Ground Shipping";
 }

if (form.os2.value == "BIG" && form.os3.value == "4" && form.os4.value == "FREE")
 {
 form.amount.value = 400;
 form.item_name.value = "4 BIG Mosaic Reprints - 40 x 60 inches with FREE UPS Ground Shipping";
 }

if (form.os2.value == "Small" && form.os3.value == "5" && form.os4.value == "FREE")
 {
 form.amount.value = 187.50;
 form.item_name.value = "5 Small Mosaic Reprints - 16 x 20 inches with FREE UPS Ground Shipping";
 }

if (form.os2.value == "Medium" && form.os3.value == "5" && form.os4.value == "FREE")
 {
 form.amount.value = 212.50;
 form.item_name.value = "5 Medium Mosaic Reprints - 20 x 24 inches with FREE UPS Ground Shipping";
 }

if (form.os2.value == "Large" && form.os3.value == "5" && form.os4.value == "FREE")
 {
 form.amount.value = 250;
 form.item_name.value = "5 Large Mosaic Reprints - 24 x 36 inches with FREE UPS Ground Shipping";
 }

if (form.os2.value == "Extra Large" && form.os3.value == "5" && form.os4.value == "FREE")
 {
 form.amount.value = 375;
 form.item_name.value = "5 Extra Large Mosaic Reprints - 30 x 40 inches with FREE UPS Ground Shipping";
 }

if (form.os2.value == "BIG" && form.os3.value == "5" && form.os4.value == "FREE")
 {
 form.amount.value = 500;
 form.item_name.value = "5 BIG Mosaic Reprints - 40 x 60 inches with FREE UPS Ground Shipping";
 }

if (form.os2.value == "Small" && form.os3.value == "6" && form.os4.value == "FREE")
 {
 form.amount.value = 225;
 form.item_name.value = "6 Small Mosaic Reprints - 16 x 20 inches with FREE UPS Ground Shipping";
 }

if (form.os2.value == "Medium" && form.os3.value == "6" && form.os4.value == "FREE")
 {
 form.amount.value = 255;
 form.item_name.value = "6 Medium Mosaic Reprints - 20 x 24 inches with FREE UPS Ground Shipping";
 }

if (form.os2.value == "Large" && form.os3.value == "6" && form.os4.value == "FREE")
 {
 form.amount.value = 300;
 form.item_name.value = "6 Large Mosaic Reprints - 24 x 36 inches with FREE UPS Ground Shipping";
 }

if (form.os2.value == "Extra Large" && form.os3.value == "6" && form.os4.value == "FREE")
 {
 form.amount.value = 450;
 form.item_name.value = "6 Extra Large Mosaic Reprints - 30 x 40 inches with FREE UPS Ground Shipping";
 }

if (form.os2.value == "BIG" && form.os3.value == "6" && form.os4.value == "FREE")
 {
 form.amount.value = 600;
 form.item_name.value = "6 BIG Mosaic Reprints - 40 x 60 inches with FREE UPS Ground Shipping";
 }

if (form.os2.value == "Small" && form.os3.value == "7" && form.os4.value == "FREE")
 {
 form.amount.value = 262.50;
 form.item_name.value = "7 Small Mosaic Reprints - 16 x 20 inches with FREE UPS Ground Shipping";
 }

if (form.os2.value == "Medium" && form.os3.value == "7" && form.os4.value == "FREE")
 {
 form.amount.value = 297.50;
 form.item_name.value = "7 Medium Mosaic Reprints - 20 x 24 inches with FREE UPS Ground Shipping";
 }

if (form.os2.value == "Large" && form.os3.value == "7" && form.os4.value == "FREE")
 {
 form.amount.value = 350;
 form.item_name.value = "7 Large Mosaic Reprints - 24 x 36 inches with FREE UPS Ground Shipping";
 }

if (form.os2.value == "Extra Large" && form.os3.value == "7" && form.os4.value == "FREE")
 {
 form.amount.value = 525;
 form.item_name.value = "7 Extra Large Mosaic Reprints - 30 x 40 inches with FREE UPS Ground Shipping";
 }

if (form.os2.value == "BIG" && form.os3.value == "7" && form.os4.value == "FREE")
 {
 form.amount.value = 700;
 form.item_name.value = "7 BIG Mosaic Reprints - 40 x 60 inches with FREE UPS Ground Shipping";
 }

if (form.os2.value == "Small" && form.os3.value == "8" && form.os4.value == "FREE")
 {
 form.amount.value = 300;
 form.item_name.value = "8 Small Mosaic Reprints - 16 x 20 inches with FREE UPS Ground Shipping";
 }

if (form.os2.value == "Medium" && form.os3.value == "8" && form.os4.value == "FREE")
 {
 form.amount.value = 340;
 form.item_name.value = "8 Medium Mosaic Reprints - 20 x 24 inches with FREE UPS Ground Shipping";
 }

if (form.os2.value == "Large" && form.os3.value == "8" && form.os4.value == "FREE")
 {
 form.amount.value = 400;
 form.item_name.value = "8 Large Mosaic Reprints - 24 x 36 inches with FREE UPS Ground Shipping";
 }

if (form.os2.value == "Extra Large" && form.os3.value == "8" && form.os4.value == "FREE")
 {
 form.amount.value = 600;
 form.item_name.value = "8 Extra Large Mosaic Reprints - 30 x 40 inches with FREE UPS Ground Shipping";
 }

if (form.os2.value == "BIG" && form.os3.value == "8" && form.os4.value == "FREE")
 {
 form.amount.value = 800;
 form.item_name.value = "8 BIG Mosaic Reprints - 40 x 60 inches with FREE UPS Ground Shipping";
 }

if (form.os2.value == "Small" && form.os3.value == "9" && form.os4.value == "FREE")
 {
 form.amount.value = 337.50;
 form.item_name.value = "9 Small Mosaic Reprints - 16 x 20 inches with FREE UPS Ground Shipping";
 }

if (form.os2.value == "Medium" && form.os3.value == "9" && form.os4.value == "FREE")
 {
 form.amount.value = 382.50;
 form.item_name.value = "9 Medium Mosaic Reprints - 20 x 24 inches with FREE UPS Ground Shipping";
 }

if (form.os2.value == "Large" && form.os3.value == "9" && form.os4.value == "FREE")
 {
 form.amount.value = 450;
 form.item_name.value = "9 Large Mosaic Reprints - 24 x 36 inches with FREE UPS Ground Shipping";
 }

if (form.os2.value == "Extra Large" && form.os3.value == "9" && form.os4.value == "FREE")
 {
 form.amount.value = 675;
 form.item_name.value = "9 Extra Large Mosaic Reprints - 30 x 40 inches with FREE UPS Ground Shipping";
 }

if (form.os2.value == "BIG" && form.os3.value == "9" && form.os4.value == "FREE")
 {
 form.amount.value = 900;
 form.item_name.value = "9 BIG Mosaic Reprints - 40 x 60 inches with FREE UPS Ground Shipping";
 }

if (form.os2.value == "Small" && form.os3.value == "10" && form.os4.value == "FREE")
 {
 form.amount.value = 375;
 form.item_name.value = "10 Small Mosaic Reprints - 16 x 20 inches with FREE UPS Ground Shipping";
 }

if (form.os2.value == "Medium" && form.os3.value == "10" && form.os4.value == "FREE")
 {
 form.amount.value = 425;
 form.item_name.value = "10 Medium Mosaic Reprints - 20 x 24 inches with FREE UPS Ground Shipping";
 }

if (form.os2.value == "Large" && form.os3.value == "10" && form.os4.value == "FREE")
 {
 form.amount.value = 500;
 form.item_name.value = "10 Large Mosaic Reprints - 24 x 36 inches with FREE UPS Ground Shipping";
 }

if (form.os2.value == "Extra Large" && form.os3.value == "10" && form.os4.value == "FREE")
 {
 form.amount.value = 750;
 form.item_name.value = "10 Extra Large Mosaic Reprints - 30 x 40 inches with FREE UPS Ground Shipping";
 }

if (form.os2.value == "BIG" && form.os3.value == "10" && form.os4.value == "FREE")
 {
 form.amount.value = 1000;
 form.item_name.value = "10 BIG Mosaic Reprints - 40 x 60 inches with FREE UPS Ground Shipping";
 }

if (form.os2.value == "Small" && form.os3.value == "1" && form.os4.value == "2day")
 {
 form.amount.value = 72.50;
 form.item_name.value = "Small Mosaic Reprint - 16 x 20 inches with UPS Two Day Air Shipping";
 }

if (form.os2.value == "Medium" && form.os3.value == "1" && form.os4.value == "2day")
 {
 form.amount.value = 77.50;
 form.item_name.value = "Medium Mosaic Reprint - 20 x 24 inches with UPS Two Day Air Shipping";
 }

if (form.os2.value == "Large" && form.os3.value == "1" && form.os4.value == "2day")
 {
 form.amount.value = 85;
 form.item_name.value = "Large Mosaic Reprint - 24 x 36 inches with UPS Two Day Air Shipping";
 }

if (form.os2.value == "Extra Large" && form.os3.value == "1" && form.os4.value == "2day")
 {
 form.amount.value = 110;
 form.item_name.value = "Extra Large Mosaic Reprint - 30 x 40 inches with UPS Two Day Air Shipping";
 }

if (form.os2.value == "BIG" && form.os3.value == "1" && form.os4.value == "2day")
 {
 form.amount.value = 135;
 form.item_name.value = "BIG Mosaic Reprint - 40 x 60 inches with UPS Two Day Air Shipping";
 }

if (form.os2.value == "Small" && form.os3.value == "2" && form.os4.value == "2day")
 {
 form.amount.value = 110;
 form.item_name.value = "2 Small Mosaic Reprints - 16 x 20 inches with UPS Two Day Air Shipping";
 }

if (form.os2.value == "Medium" && form.os3.value == "2" && form.os4.value == "2day")
 {
 form.amount.value = 120;
 form.item_name.value = "2 Medium Mosaic Reprints - 20 x 24 inches with UPS Two Day Air Shipping";
 }

if (form.os2.value == "Large" && form.os3.value == "2" && form.os4.value == "2day")
 {
 form.amount.value = 135;
 form.item_name.value = "2 Large Mosaic Reprints - 24 x 36 inches with UPS Two Day Air Shipping";
 }

if (form.os2.value == "Extra Large" && form.os3.value == "2" && form.os4.value == "2day")
 {
 form.amount.value = 185;
 form.item_name.value = "2 Extra Large Mosaic Reprints - 30 x 40 inches with UPS Two Day Air Shipping";
 }

if (form.os2.value == "BIG" && form.os3.value == "2" && form.os4.value == "2day")
 {
 form.amount.value = 235;
 form.item_name.value = "2 BIG Mosaic Reprints - 40 x 60 inches with UPS Two Day Air Shipping";
 }

if (form.os2.value == "Small" && form.os3.value == "3" && form.os4.value == "2day")
 {
 form.amount.value = 147.50;
 form.item_name.value = "3 Small Mosaic Reprints - 16 x 20 inches with UPS Two Day Air Shipping";
 }

if (form.os2.value == "Medium" && form.os3.value == "3" && form.os4.value == "2day")
 {
 form.amount.value = 162.50;
 form.item_name.value = "3 Medium Mosaic Reprints - 20 x 24 inches with UPS Two Day Air Shipping";
 }

if (form.os2.value == "Large" && form.os3.value == "3" && form.os4.value == "2day")
 {
 form.amount.value = 185;
 form.item_name.value = "3 Large Mosaic Reprints - 24 x 36 inches with UPS Two Day Air Shipping";
 }

if (form.os2.value == "Extra Large" && form.os3.value == "3" && form.os4.value == "2day")
 {
 form.amount.value = 260;
 form.item_name.value = "3 Extra Large Mosaic Reprints - 30 x 40 inches with UPS Two Day Air Shipping";
 }

if (form.os2.value == "BIG" && form.os3.value == "3" && form.os4.value == "2day")
 {
 form.amount.value = 335;
 form.item_name.value = "3 BIG Mosaic Reprints - 40 x 60 inches with UPS Two Day Air Shipping";
 }

if (form.os2.value == "Small" && form.os3.value == "4" && form.os4.value == "2day")
 {
 form.amount.value = 185;
 form.item_name.value = "4 Small Mosaic Reprints - 16 x 20 inches with UPS Two Day Air Shipping";
 }

if (form.os2.value == "Medium" && form.os3.value == "4" && form.os4.value == "2day")
 {
 form.amount.value = 205;
 form.item_name.value = "4 Medium Mosaic Reprints - 20 x 24 inches with UPS Two Day Air Shipping";
 }

if (form.os2.value == "Large" && form.os3.value == "4" && form.os4.value == "2day")
 {
 form.amount.value = 235;
 form.item_name.value = "4 Large Mosaic Reprints - 24 x 36 inches with UPS Two Day Air Shipping";
 }

if (form.os2.value == "Extra Large" && form.os3.value == "4" && form.os4.value == "2day")
 {
 form.amount.value = 335;
 form.item_name.value = "4 Extra Large Mosaic Reprints - 30 x 40 inches with UPS Two Day Air Shipping";
 }

if (form.os2.value == "BIG" && form.os3.value == "4" && form.os4.value == "2day")
 {
 form.amount.value = 435;
 form.item_name.value = "4 BIG Mosaic Reprints - 40 x 60 inches with UPS Two Day Air Shipping";
 }

if (form.os2.value == "Small" && form.os3.value == "5" && form.os4.value == "2day")
 {
 form.amount.value = 222.50;
 form.item_name.value = "5 Small Mosaic Reprints - 16 x 20 inches with UPS Two Day Air Shipping";
 }

if (form.os2.value == "Medium" && form.os3.value == "5" && form.os4.value == "2day")
 {
 form.amount.value = 247.50;
 form.item_name.value = "5 Medium Mosaic Reprints - 20 x 24 inches with UPS Two Day Air Shipping";
 }

if (form.os2.value == "Large" && form.os3.value == "5" && form.os4.value == "2day")
 {
 form.amount.value = 285;
 form.item_name.value = "5 Large Mosaic Reprints - 24 x 36 inches with UPS Two Day Air Shipping";
 }

if (form.os2.value == "Extra Large" && form.os3.value == "5" && form.os4.value == "2day")
 {
 form.amount.value = 410;
 form.item_name.value = "5 Extra Large Mosaic Reprints - 30 x 40 inches with UPS Two Day Air Shipping";
 }

if (form.os2.value == "BIG" && form.os3.value == "5" && form.os4.value == "2day")
 {
 form.amount.value = 535;
 form.item_name.value = "5 BIG Mosaic Reprints - 40 x 60 inches with UPS Two Day Air Shipping";
 }

if (form.os2.value == "Small" && form.os3.value == "6" && form.os4.value == "2day")
 {
 form.amount.value = 260;
 form.item_name.value = "6 Small Mosaic Reprints - 16 x 20 inches with UPS Two Day Air Shipping";
 }

if (form.os2.value == "Medium" && form.os3.value == "6" && form.os4.value == "2day")
 {
 form.amount.value = 290;
 form.item_name.value = "6 Medium Mosaic Reprints - 20 x 24 inches with UPS Two Day Air Shipping";
 }

if (form.os2.value == "Large" && form.os3.value == "6" && form.os4.value == "2day")
 {
 form.amount.value = 335;
 form.item_name.value = "6 Large Mosaic Reprints - 24 x 36 inches with UPS Two Day Air Shipping";
 }

if (form.os2.value == "Extra Large" && form.os3.value == "6" && form.os4.value == "2day")
 {
 form.amount.value = 485;
 form.item_name.value = "6 Extra Large Mosaic Reprints - 30 x 40 inches with UPS Two Day Air Shipping";
 }

if (form.os2.value == "BIG" && form.os3.value == "6" && form.os4.value == "2day")
 {
 form.amount.value = 635;
 form.item_name.value = "6 BIG Mosaic Reprints - 40 x 60 inches with UPS Two Day Air Shipping";
 }

if (form.os2.value == "Small" && form.os3.value == "7" && form.os4.value == "2day")
 {
 form.amount.value = 297.50;
 form.item_name.value = "7 Small Mosaic Reprints - 16 x 20 inches with UPS Two Day Air Shipping";
 }

if (form.os2.value == "Medium" && form.os3.value == "7" && form.os4.value == "2day")
 {
 form.amount.value = 332.50;
 form.item_name.value = "7 Medium Mosaic Reprints - 20 x 24 inches with UPS Two Day Air Shipping";
 }

if (form.os2.value == "Large" && form.os3.value == "7" && form.os4.value == "2day")
 {
 form.amount.value = 385;
 form.item_name.value = "7 Large Mosaic Reprints - 24 x 36 inches with UPS Two Day Air Shipping";
 }

if (form.os2.value == "Extra Large" && form.os3.value == "7" && form.os4.value == "2day")
 {
 form.amount.value = 560;
 form.item_name.value = "7 Extra Large Mosaic Reprints - 30 x 40 inches with UPS Two Day Air Shipping";
 }

if (form.os2.value == "BIG" && form.os3.value == "7" && form.os4.value == "2day")
 {
 form.amount.value = 735;
 form.item_name.value = "7 BIG Mosaic Reprints - 40 x 60 inches with UPS Two Day Air Shipping";
 }

if (form.os2.value == "Small" && form.os3.value == "8" && form.os4.value == "2day")
 {
 form.amount.value = 335;
 form.item_name.value = "8 Small Mosaic Reprints - 16 x 20 inches with UPS Two Day Air Shipping";
 }

if (form.os2.value == "Medium" && form.os3.value == "8" && form.os4.value == "2day")
 {
 form.amount.value = 375;
 form.item_name.value = "8 Medium Mosaic Reprints - 20 x 24 inches with UPS Two Day Air Shipping";
 }

if (form.os2.value == "Large" && form.os3.value == "8" && form.os4.value == "2day")
 {
 form.amount.value = 435;
 form.item_name.value = "8 Large Mosaic Reprints - 24 x 36 inches with UPS Two Day Air Shipping";
 }

if (form.os2.value == "Extra Large" && form.os3.value == "8" && form.os4.value == "2day")
 {
 form.amount.value = 635;
 form.item_name.value = "8 Extra Large Mosaic Reprints - 30 x 40 inches with UPS Two Day Air Shipping";
 }

if (form.os2.value == "BIG" && form.os3.value == "8" && form.os4.value == "2day")
 {
 form.amount.value = 835;
 form.item_name.value = "8 BIG Mosaic Reprints - 40 x 60 inches with UPS Two Day Air Shipping";
 }

if (form.os2.value == "Small" && form.os3.value == "9" && form.os4.value == "2day")
 {
 form.amount.value = 372.50;
 form.item_name.value = "9 Small Mosaic Reprints - 16 x 20 inches with UPS Two Day Air Shipping";
 }

if (form.os2.value == "Medium" && form.os3.value == "9" && form.os4.value == "2day")
 {
 form.amount.value = 417.50;
 form.item_name.value = "9 Medium Mosaic Reprints - 20 x 24 inches with UPS Two Day Air Shipping";
 }

if (form.os2.value == "Large" && form.os3.value == "9" && form.os4.value == "2day")
 {
 form.amount.value = 485;
 form.item_name.value = "9 Large Mosaic Reprints - 24 x 36 inches with UPS Two Day Air Shipping";
 }

if (form.os2.value == "Extra Large" && form.os3.value == "9" && form.os4.value == "2day")
 {
 form.amount.value = 710;
 form.item_name.value = "9 Extra Large Mosaic Reprints - 30 x 40 inches with UPS Two Day Air Shipping";
 }

if (form.os2.value == "BIG" && form.os3.value == "9" && form.os4.value == "2day")
 {
 form.amount.value = 935;
 form.item_name.value = "9 BIG Mosaic Reprints - 40 x 60 inches with UPS Two Day Air Shipping";
 }

if (form.os2.value == "Small" && form.os3.value == "10" && form.os4.value == "2day")
 {
 form.amount.value = 410;
 form.item_name.value = "10 Small Mosaic Reprints - 16 x 20 inches with UPS Two Day Air Shipping";
 }

if (form.os2.value == "Medium" && form.os3.value == "10" && form.os4.value == "2day")
 {
 form.amount.value = 460;
 form.item_name.value = "10 Medium Mosaic Reprints - 20 x 24 inches with UPS Two Day Air Shipping";
 }

if (form.os2.value == "Large" && form.os3.value == "10" && form.os4.value == "2day")
 {
 form.amount.value = 535;
 form.item_name.value = "10 Large Mosaic Reprints - 24 x 36 inches with UPS Two Day Air Shipping";
 }

if (form.os2.value == "Extra Large" && form.os3.value == "10" && form.os4.value == "2day")
 {
 form.amount.value = 785;
 form.item_name.value = "10 Extra Large Mosaic Reprints - 30 x 40 inches with UPS Two Day Air Shipping";
 }

if (form.os2.value == "BIG" && form.os3.value == "10" && form.os4.value == "2day")
 {
 form.amount.value = 1035;
 form.item_name.value = "10 BIG Mosaic Reprints - 40 x 60 inches with UPS Two Day Air Shipping";
 }

if (form.os2.value == "Small" && form.os3.value == "1" && form.os4.value == "Overnight")
 {
 form.amount.value = 92.50;
 form.item_name.value = "Small Mosaic Reprint - 16 x 20 inches with UPS Overnight PM Shipping";
 }

if (form.os2.value == "Medium" && form.os3.value == "1" && form.os4.value == "Overnight")
 {
 form.amount.value = 97.50;
 form.item_name.value = "Medium Mosaic Reprint - 20 x 24 inches with UPS Overnight PM Shipping";
 }

if (form.os2.value == "Large" && form.os3.value == "1" && form.os4.value == "Overnight")
 {
 form.amount.value = 105;
 form.item_name.value = "Large Mosaic Reprint - 24 x 36 inches with UPS Overnight PM Shipping";
 }

if (form.os2.value == "Extra Large" && form.os3.value == "1" && form.os4.value == "Overnight")
 {
 form.amount.value = 130;
 form.item_name.value = "Extra Large Mosaic Reprint - 30 x 40 inches with UPS Overnight PM Shipping";
 }

if (form.os2.value == "BIG" && form.os3.value == "1" && form.os4.value == "Overnight")
 {
 form.amount.value = 155;
 form.item_name.value = "BIG Mosaic Reprint - 40 x 60 inches with UPS Overnight PM Shipping";
 }

if (form.os2.value == "Small" && form.os3.value == "2" && form.os4.value == "Overnight")
 {
 form.amount.value = 130;
 form.item_name.value = "2 Small Mosaic Reprints - 16 x 20 inches with UPS Overnight PM Shipping";
 }

if (form.os2.value == "Medium" && form.os3.value == "2" && form.os4.value == "Overnight")
 {
 form.amount.value = 140;
 form.item_name.value = "2 Medium Mosaic Reprints - 20 x 24 inches with UPS Overnight PM Shipping";
 }

if (form.os2.value == "Large" && form.os3.value == "2" && form.os4.value == "Overnight")
 {
 form.amount.value = 155;
 form.item_name.value = "2 Large Mosaic Reprints - 24 x 36 inches with UPS Overnight PM Shipping";
 }

if (form.os2.value == "Extra Large" && form.os3.value == "2" && form.os4.value == "Overnight")
 {
 form.amount.value = 205;
 form.item_name.value = "2 Extra Large Mosaic Reprints - 30 x 40 inches with UPS Overnight PM Shipping";
 }

if (form.os2.value == "BIG" && form.os3.value == "2" && form.os4.value == "Overnight")
 {
 form.amount.value = 255;
 form.item_name.value = "2 BIG Mosaic Reprints - 40 x 60 inches with UPS Overnight PM Shipping";
 }

if (form.os2.value == "Small" && form.os3.value == "3" && form.os4.value == "Overnight")
 {
 form.amount.value = 167.50;
 form.item_name.value = "3 Small Mosaic Reprints - 16 x 20 inches with UPS Overnight PM Shipping";
 }

if (form.os2.value == "Medium" && form.os3.value == "3" && form.os4.value == "Overnight")
 {
 form.amount.value = 182.50;
 form.item_name.value = "3 Medium Mosaic Reprints - 20 x 24 inches with UPS Overnight PM Shipping";
 }

if (form.os2.value == "Large" && form.os3.value == "3" && form.os4.value == "Overnight")
 {
 form.amount.value = 205;
 form.item_name.value = "3 Large Mosaic Reprints - 24 x 36 inches with UPS Overnight PM Shipping";
 }

if (form.os2.value == "Extra Large" && form.os3.value == "3" && form.os4.value == "Overnight")
 {
 form.amount.value = 280;
 form.item_name.value = "3 Extra Large Mosaic Reprints - 30 x 40 inches with UPS Overnight PM Shipping";
 }

if (form.os2.value == "BIG" && form.os3.value == "3" && form.os4.value == "Overnight")
 {
 form.amount.value = 355;
 form.item_name.value = "3 BIG Mosaic Reprints - 40 x 60 inches with UPS Overnight PM Shipping";
 }

if (form.os2.value == "Small" && form.os3.value == "4" && form.os4.value == "Overnight")
 {
 form.amount.value = 205;
 form.item_name.value = "4 Small Mosaic Reprints - 16 x 20 inches with UPS Overnight PM Shipping";
 }

if (form.os2.value == "Medium" && form.os3.value == "4" && form.os4.value == "Overnight")
 {
 form.amount.value = 225;
 form.item_name.value = "4 Medium Mosaic Reprints - 20 x 24 inches with UPS Overnight PM Shipping";
 }

if (form.os2.value == "Large" && form.os3.value == "4" && form.os4.value == "Overnight")
 {
 form.amount.value = 255;
 form.item_name.value = "4 Large Mosaic Reprints - 24 x 36 inches with UPS Overnight PM Shipping";
 }

if (form.os2.value == "Extra Large" && form.os3.value == "4" && form.os4.value == "Overnight")
 {
 form.amount.value = 355;
 form.item_name.value = "4 Extra Large Mosaic Reprints - 30 x 40 inches with UPS Overnight PM Shipping";
 }

if (form.os2.value == "BIG" && form.os3.value == "4" && form.os4.value == "Overnight")
 {
 form.amount.value = 455;
 form.item_name.value = "4 BIG Mosaic Reprints - 40 x 60 inches with UPS Overnight PM Shipping";
 }

if (form.os2.value == "Small" && form.os3.value == "5" && form.os4.value == "Overnight")
 {
 form.amount.value = 242.50;
 form.item_name.value = "5 Small Mosaic Reprints - 16 x 20 inches with UPS Overnight PM Shipping";
 }

if (form.os2.value == "Medium" && form.os3.value == "5" && form.os4.value == "Overnight")
 {
 form.amount.value = 267.50;
 form.item_name.value = "5 Medium Mosaic Reprints - 20 x 24 inches with UPS Overnight PM Shipping";
 }

if (form.os2.value == "Large" && form.os3.value == "5" && form.os4.value == "Overnight")
 {
 form.amount.value = 305;
 form.item_name.value = "5 Large Mosaic Reprints - 24 x 36 inches with UPS Overnight PM Shipping";
 }

if (form.os2.value == "Extra Large" && form.os3.value == "5" && form.os4.value == "Overnight")
 {
 form.amount.value = 430;
 form.item_name.value = "5 Extra Large Mosaic Reprints - 30 x 40 inches with UPS Overnight PM Shipping";
 }

if (form.os2.value == "BIG" && form.os3.value == "5" && form.os4.value == "Overnight")
 {
 form.amount.value = 555;
 form.item_name.value = "5 BIG Mosaic Reprints - 40 x 60 inches with UPS Overnight PM Shipping";
 }

if (form.os2.value == "Small" && form.os3.value == "6" && form.os4.value == "Overnight")
 {
 form.amount.value = 280;
 form.item_name.value = "6 Small Mosaic Reprints - 16 x 20 inches with UPS Overnight PM Shipping";
 }

if (form.os2.value == "Medium" && form.os3.value == "6" && form.os4.value == "Overnight")
 {
 form.amount.value = 310;
 form.item_name.value = "6 Medium Mosaic Reprints - 20 x 24 inches with UPS Overnight PM Shipping";
 }

if (form.os2.value == "Large" && form.os3.value == "6" && form.os4.value == "Overnight")
 {
 form.amount.value = 355;
 form.item_name.value = "6 Large Mosaic Reprints - 24 x 36 inches with UPS Overnight PM Shipping";
 }

if (form.os2.value == "Extra Large" && form.os3.value == "6" && form.os4.value == "Overnight")
 {
 form.amount.value = 505;
 form.item_name.value = "6 Extra Large Mosaic Reprints - 30 x 40 inches with UPS Overnight PM Shipping";
 }

if (form.os2.value == "BIG" && form.os3.value == "6" && form.os4.value == "Overnight")
 {
 form.amount.value = 655;
 form.item_name.value = "6 BIG Mosaic Reprints - 40 x 60 inches with UPS Overnight PM Shipping";
 }

if (form.os2.value == "Small" && form.os3.value == "7" && form.os4.value == "Overnight")
 {
 form.amount.value = 317.50;
 form.item_name.value = "7 Small Mosaic Reprints - 16 x 20 inches with UPS Overnight PM Shipping";
 }

if (form.os2.value == "Medium" && form.os3.value == "7" && form.os4.value == "Overnight")
 {
 form.amount.value = 352.50;
 form.item_name.value = "7 Medium Mosaic Reprints - 20 x 24 inches with UPS Overnight PM Shipping";
 }

if (form.os2.value == "Large" && form.os3.value == "7" && form.os4.value == "Overnight")
 {
 form.amount.value = 405;
 form.item_name.value = "7 Large Mosaic Reprints - 24 x 36 inches with UPS Overnight PM Shipping";
 }

if (form.os2.value == "Extra Large" && form.os3.value == "7" && form.os4.value == "Overnight")
 {
 form.amount.value = 580;
 form.item_name.value = "7 Extra Large Mosaic Reprints - 30 x 40 inches with UPS Overnight PM Shipping";
 }

if (form.os2.value == "BIG" && form.os3.value == "7" && form.os4.value == "Overnight")
 {
 form.amount.value = 755;
 form.item_name.value = "7 BIG Mosaic Reprints - 40 x 60 inches with UPS Overnight PM Shipping";
 }

if (form.os2.value == "Small" && form.os3.value == "8" && form.os4.value == "Overnight")
 {
 form.amount.value = 355;
 form.item_name.value = "8 Small Mosaic Reprints - 16 x 20 inches with UPS Overnight PM Shipping";
 }

if (form.os2.value == "Medium" && form.os3.value == "8" && form.os4.value == "Overnight")
 {
 form.amount.value = 395;
 form.item_name.value = "8 Medium Mosaic Reprints - 20 x 24 inches with UPS Overnight PM Shipping";
 }

if (form.os2.value == "Large" && form.os3.value == "8" && form.os4.value == "Overnight")
 {
 form.amount.value = 455;
 form.item_name.value = "8 Large Mosaic Reprints - 24 x 36 inches with UPS Overnight PM Shipping";
 }

if (form.os2.value == "Extra Large" && form.os3.value == "8" && form.os4.value == "Overnight")
 {
 form.amount.value = 655;
 form.item_name.value = "8 Extra Large Mosaic Reprints - 30 x 40 inches with UPS Overnight PM Shipping";
 }

if (form.os2.value == "BIG" && form.os3.value == "8" && form.os4.value == "Overnight")
 {
 form.amount.value = 855;
 form.item_name.value = "8 BIG Mosaic Reprints - 40 x 60 inches with UPS Overnight PM Shipping";
 }

if (form.os2.value == "Small" && form.os3.value == "9" && form.os4.value == "Overnight")
 {
 form.amount.value = 392.50;
 form.item_name.value = "9 Small Mosaic Reprints - 16 x 20 inches with UPS Overnight PM Shipping";
 }

if (form.os2.value == "Medium" && form.os3.value == "9" && form.os4.value == "Overnight")
 {
 form.amount.value = 437.50;
 form.item_name.value = "9 Medium Mosaic Reprints - 20 x 24 inches with UPS Overnight PM Shipping";
 }

if (form.os2.value == "Large" && form.os3.value == "9" && form.os4.value == "Overnight")
 {
 form.amount.value = 505;
 form.item_name.value = "9 Large Mosaic Reprints - 24 x 36 inches with UPS Overnight PM Shipping";
 }

if (form.os2.value == "Extra Large" && form.os3.value == "9" && form.os4.value == "Overnight")
 {
 form.amount.value = 730;
 form.item_name.value = "9 Extra Large Mosaic Reprints - 30 x 40 inches with UPS Overnight PM Shipping";
 }

if (form.os2.value == "BIG" && form.os3.value == "9" && form.os4.value == "Overnight")
 {
 form.amount.value = 955;
 form.item_name.value = "9 BIG Mosaic Reprints - 40 x 60 inches with UPS Overnight PM Shipping";
 }

if (form.os2.value == "Small" && form.os3.value == "10" && form.os4.value == "Overnight")
 {
 form.amount.value = 430;
 form.item_name.value = "10 Small Mosaic Reprints - 16 x 20 inches with UPS Overnight PM Shipping";
 }

if (form.os2.value == "Medium" && form.os3.value == "10" && form.os4.value == "Overnight")
 {
 form.amount.value = 480;
 form.item_name.value = "10 Medium Mosaic Reprints - 20 x 24 inches with UPS Overnight PM Shipping";
 }

if (form.os2.value == "Large" && form.os3.value == "10" && form.os4.value == "Overnight")
 {
 form.amount.value = 555;
 form.item_name.value = "10 Large Mosaic Reprints - 24 x 36 inches with UPS Overnight PM Shipping";
 }

if (form.os2.value == "Extra Large" && form.os3.value == "10" && form.os4.value == "Overnight")
 {
 form.amount.value = 805;
 form.item_name.value = "10 Extra Large Mosaic Reprints - 30 x 40 inches with UPS Overnight PM Shipping";
 }

if (form.os2.value == "BIG" && form.os3.value == "10" && form.os4.value == "Overnight")
 {
 form.amount.value = 1055;
 form.item_name.value = "10 BIG Mosaic Reprints - 40 x 60 inches with UPS Overnight PM Shipping";
 }


}
