function displayLiv(id)
{
	//alert ("id"+id);
	var cpt=0;
	for (cpt; cpt<=10;cpt++)
		if (document.getElementById && document.getElementById( "id"+cpt ))
			document.getElementById( "id"+cpt ).className='cachediv';
	
	var divID = "id"+id;
	if (document.getElementById && document.getElementById(divID))
		document.getElementById(divID).className = '';

}

function test() {
if (document.getElementById && document.getElementById("selectLivId"))
	displayLiv(document.getElementById("selectLivId").value);
}

window.onload = function() {
test();
};
