function toggleSubmit(obj)
{
	var count = 1;
	if(obj.selectedIndex == 0)
	{
		while(document.getElementById("d" + count))
		{
			document.getElementById("d" + count).style.display = "block";
			count++;
		}
	}
	else
	{
		while(document.getElementById("d" + count))
		{
			document.getElementById("d" + count).style.display = "none";
			count++;
		}
		document.getElementById("d" + obj.selectedIndex).style.display = "block";
	}
}

