// JavaScript Document







menuItem2 = [	["お選びください"],

			["二つ折","巻三つ折","外三つ折","巻四つ折","十字四つ折","DM折","観音折"],

			["PP片面","PP両面","マットPP片面","マットPP両面","パウチ"],

			["1本","2本","3本","4本"],

			["1本","2本","3本","4本"] ];

function clear2(len)

{

	var k;

	for (k=0; k<len; k++)

	{

		document.form3.process2.options[k] = null;

	}

}

function setMenuItem2(n)

{

	optlen = document.form3.process2.options.length;

	while(optlen > 0)

	{

		clear2(optlen);

		optlen = document.form3.process2.options.length;

	}

	

	if (menuItem2[n].length > 0)

	{

		for (k=0; k<menuItem2[n].length; k++)

		{

			document.form3.process2.options[k] = new Option(menuItem2[n][k],menuItem2[n][k]);

		}

	}

}