/**
 * ---------------------------------------------------------------------------
 *  Majer Interfaces
 *  GÖD
 *  2009.12.16
 * ---------------------------------------------------------------------------
 *  PrintSize Changer by StandardCode (CountryCode) 
 * ---------------------------------------------------------------------------
 */

function OnChangeStandardSelect()
	{
		// window.alert("Hello");	  
		
		var CountryList = document.getElementById("CountryCode");		
		var PrintList   = document.getElementById("LayerCode");
		var Dim         = document.getElementById("Dim");
		
		// window.alert(CountryList.selectedIndex);
		if(CountryList.selectedIndex < 2)
			{
			  // PrintList.options.length = 0;
				// var Option = new Option("Test", "Test");
				// var Option = document.createElement('<option value="Test" label="Test">');
				PrintList.options.length = 0;
				var Ct = 0; 
				PrintList.options[Ct++] = new Option("Single Photo for MSN, Skype, etc.", "5");
				
				Dim.style.visibility = 'hidden';
			}
		else
			{				
				PrintList.options.length = 0;
				var Ct = 0; 
				PrintList.options[Ct++] = new Option("9x13",  "0");
				PrintList.options[Ct++] = new Option("10x15", "1");
				PrintList.options[Ct++] = new Option("13x18", "2");
				PrintList.options[Ct++] = new Option("15x21", "3");
				PrintList.options[Ct++] = new Option("18x24", "4");
				// PrintList.options[Ct++] = new Option("Single Photo (MSN, Skype, etc)", "5");				
				
				Dim.style.visibility = 'visible';
			}
	}