var body = new Array(4);
var bb = new Array(4);

body[1]=new Array("ST16x","ST18x","ST20x","ZZT23x");

bb[1]=new Array("-");
bb[2]=new Array("S-R","Z-R","Z-R 4WS equipped car","GT-R","GT-FOUR","GT-FOUR rally","GT-R 4WS equipped car","Convertible 4WS equipped car","Convertible type G 4WS equipped car");
bb[3]=new Array("SS-I","SS-I 4WS equipped car","SS-II","SS-III","GT-FOUR","Convertible","Convertible type X","SS-II super strut suspension equipped car");
bb[4]=new Array("SS-I","SS-II","SS-II super strut package");

function ChangeBody(str)
{
	n=document.all.car_body_type.selectedIndex + 1;
	document.all.car_body.length=bb[n].length;
	for(i=0; i<bb[n].length; i++)
		{
		document.all.car_body[i].value = bb[n][i];
		document.all.car_body[i].text = bb[n][i];
		}
}

function ChangeLocation(str)
{
	if(str=="m")
	{
	document.all['anotherdiv'].style.display = "none";
	document.all['metrodiv'].style.display = "block";
	}
	else
	{
	document.all['metrodiv'].style.display = "none";
	document.all['anotherdiv'].style.display = "block";
	}
}


function RM(str)
{
	if(document.all[str].style.display == "none")
	{
	document.all[str].style.display = "block";
	}
	else
	{
	document.all[str].style.display = "none";
	}
}
