function findselected() {
	var select_message = document.getElementById('selectMsg'); //Error Message Box
	
	/****************** MX Hybrid Chipper *********************/
	var id2_loft = document.getElementById('attrib-1'); // Loft 
	var id2_side = document.getElementById('attrib-2'); // Side
	var id2_shaft = document.getElementById('attrib-3'); // Shaft	

	if((id2_shaft.value == "11") && (id2_side.value == "8"))
	{
		select_message.innerHTML  = "<font color=\"#ff0f0a\">Only "+id2_side.options[0].text+" shaft available with "+id2_shaft.options[1].text+" MX</font>";
		id2_side.options[0].selected = true; 		
	} else {
		select_message.innerHTML  = "";
	}
	

		
	/**********************************************************/
}	

function inputload() {
	var select_message = document.getElementById('selectMsg');
	/****************** MX Hybrid Chipper *********************/
	var id2_loft = document.getElementById('attrib-1'); // Loft 
	var id2_side = document.getElementById('attrib-2'); // Side
	var id2_shaft = document.getElementById('attrib-3'); // Shaft
	
	$('a').ToolTip(
			{
				className: 'inputsTooltip',
				position: 'mouse'
			}
		);
}


