function updateQuote(){
  
  var priceArray = new Array();
  priceArray = new Array();
  
  if(document.getElementById('ink').checked == true){
    //set up arrays for dye inks if dye radio button checked
		var indexnum = document.getElementById('poster-size').value -1
		
		//This array for no laminate prices
    priceArray[0] = 15;
    priceArray[1] = 15;
    priceArray[2] = 15;
    priceArray[3] = 16.50;
    priceArray[4] = 17;
    priceArray[5] = 24;
    priceArray[6] = 32;
    priceArray[7] = 40;
    priceArray[8] = 48;
    priceArray[9] = 56;
    priceArray[10] = 64;
    priceArray[11] = 33.50;
    priceArray[12] = 48;
    priceArray[13] = 60;
    priceArray[14] = 72;
    priceArray[15] = 84;
    priceArray[16] = 96;
    
		//This array for laminate prices
    priceArray2 = new Array();
    priceArray2[0] = 18.50;
    priceArray2[1] = 18.50;
    priceArray2[2] = 18.50;
    priceArray2[3] = 20.50;
    priceArray2[4] = 21.50;
    priceArray2[5] = 30;
    priceArray2[6] = 40;
    priceArray2[7] = 50;
    priceArray2[8] = 60;
    priceArray2[9] = 70;
    priceArray2[10] = 80;
    priceArray2[11] = 41.50;
    priceArray2[12] = 60;
    priceArray2[13] = 75;
    priceArray2[14] = 90;
    priceArray2[15] = 105;
    priceArray2[16] = 120;
  
  }else{
	  //otherwise pigment radio button must be checked so set up arrays for pigment prices
    var indexnum = document.getElementById('poster-size2').value -1
		//This array for matte or semi-matte pigment prices
    priceArray[0] = 17;
    priceArray[1] = 17;
    priceArray[2] = 17;
    priceArray[3] = 20;
    priceArray[4] = 21.50;
    priceArray[5] = 30;
    priceArray[6] = 40;
    priceArray[7] = 50;
    priceArray[8] = 60;
    priceArray[9] = 70;
    priceArray[10] = 80;
    priceArray[11] = 41.50;
    priceArray[12] = 60;
    priceArray[13] = 75;
    priceArray[14] = 90;
    priceArray[15] = 105;
    priceArray[16] = 120;
    priceArray[17] = 70;
    priceArray[18] = 87.50;
    priceArray[19] = 105;
    priceArray[20] = 122.50;
    priceArray[21] = 140;
    
		//This array for glossy pigment prices
    priceArray2 = new Array();
    priceArray2[0] = 20;
    priceArray2[1] = 20;
    priceArray2[2] = 20;
    priceArray2[3] = 25;
    priceArray2[4] = 26;
    priceArray2[5] = 36;
    priceArray2[6] = 48;
    priceArray2[7] = 60;
    priceArray2[8] = 72;
    priceArray2[9] = 84;
    priceArray2[10] = 96;
    priceArray2[11] = 50;
    priceArray2[12] = 72;
    priceArray2[13] = 90;
    priceArray2[14] = 108;
    priceArray2[15] = 126
    priceArray2[16] = 144;
    priceArray2[17] = "n/a";
    priceArray2[18] = "n/a";
    priceArray2[19] = "n/a";
    priceArray2[20] = "n/a";
    priceArray2[21] = "n/a";
  }
  
  //Lookup amount depending on type of finish
  if(document.getElementById('finish').value==1){
    if(indexnum > 16){document.getElementById('calc-amount').value = priceArray2[indexnum];}
      else {document.getElementById('calc-amount').value = priceArray2[indexnum].toFixed(2);}
  }else{document.getElementById('calc-amount').value = priceArray[indexnum].toFixed(2);}
}//end function updateQuote()

//functions to toggle which select menu is displayed
function updateDisplay(){
  document.getElementById('poster-size').style.display = 'none'; 
  document.getElementById('poster-size2').style.display = 'block';
}

function updateDisplay2(){
  document.getElementById('poster-size2').style.display = 'none'; 
 document.getElementById('poster-size').style.display = 'block'; 
	//updateQuote();
}