function refreshFormSelectCategory( x )
{
	if( x == "CategoryLarge" )
	{
		document.forms[ "input" ].elements[ "CategoryMiddle" ].selectedIndex = 0;
		document.forms[ "input" ].elements[ "CategorySmall" ].selectedIndex = 0;
	}
	else if( x == "CategoryMiddle" )
	{
		document.forms[ "input" ].elements[ "CategoryLarge" ].selectedIndex = 0;
		document.forms[ "input" ].elements[ "CategorySmall" ].selectedIndex = 0;
	}
	else if( x == "CategorySmall" )
	{
		document.forms[ "input" ].elements[ "CategoryLarge" ].selectedIndex = 0;
		document.forms[ "input" ].elements[ "CategoryMiddle" ].selectedIndex = 0;
	}
	else
	{
		document.forms[ "input" ].elements[ "CategoryLarge" ].selectedIndex = 0;
		document.forms[ "input" ].elements[ "CategoryMiddle" ].selectedIndex = 0;
		document.forms[ "input" ].elements[ "CategorySmall" ].selectedIndex = 0;
	}
}

