// JavaScript Document
function getCss()
{
if(document.getElementById('serviceType').options[0].selected==true)
	{
	
	
	document.getElementById('fencing').className="fencingHide";
	
	document.getElementById('timberFence').className="timberFenceHide";
	document.getElementById('colourbondFence').className="colourbondFenceHide";
	
	}


if(document.getElementById('serviceType').options[1].selected==true)
	{
	document.getElementById('fencing').className="fencingShow";
	}


if(document.getElementById('fencingType').options[0].selected==true)
	{
	document.getElementById('timberFence').className="timberFenceHide";
	document.getElementById('colourbondFence').className="colourbondFenceHide";
	}
	if(document.getElementById('fencingType').options[1].selected==true)
	{
	document.getElementById('timberFence').className="timberFenceShow";
	document.getElementById('colourbondFence').className="colourbondFenceHide";
	}
	if(document.getElementById('fencingType').options[2].selected==true)
	{
	document.getElementById('timberFence').className="timberFenceHide";
	document.getElementById('colourbondFence').className="colourbondFenceShow";
	}



}

