function findselected(){
	var attrib_2 = document.getElementById('attrib-2');
	var attrib_3_0 = document.getElementById('attrib-3-0');
	var attrib_4_0 = document.getElementById('attrib-4-0');
	var attrib_5_0 = document.getElementById('attrib-5-0');
	// Start with fields Disabled
	//(attrib_2.value == "5")? attrib_3_0.disabled=false : attrib_3_0.disabled=true;
	//(attrib_2.value == "5")? attrib_4_0.disabled=false : attrib_4_0.disabled=true;
	//(attrib_2.value == "5")? attrib_5_0.disabled=true : attrib_5_0.disabled=false;

	if(attrib_3_0 == null)
	{
		if (attrib_2.value == "6")
		{
			attrib_5_0.disabled = false;
		}
		
		if (attrib_2.value == "7")
		{
			attrib_5_0.disabled = true;
		}
		
	}
	else
	{

		if (attrib_2.value == "5")
		{
			attrib_3_0.disabled = false;
			attrib_4_0.disabled = false;
			attrib_5_0.disabled = true;
		}
		
		
		if (attrib_2.value == "6")
		{
			attrib_3_0.disabled = true;
			attrib_4_0.disabled = true;
			attrib_5_0.disabled = false;
		}
		
		if (attrib_2.value == "7")
		{
			attrib_3_0.disabled = true;
			attrib_4_0.disabled = true;
			attrib_5_0.disabled = true;
		}
	}
}

function inputload(){
	
	var attrib_3_0 = document.getElementById('attrib-3-0');
	var attrib_4_0 = document.getElementById('attrib-4-0');
	var attrib_5_0 = document.getElementById('attrib-5-0');
	
	if(attrib_3_0 == null)
	{
		attrib_5_0.disabled = true;
	}
	else
	{
		attrib_3_0.disabled = true;
		attrib_4_0.disabled = true;
		attrib_5_0.disabled = true;
	}
}