function showPrices(id) {
	var ajax=new ajaxConn();
	if (ajax.success==true)
	{
		
		ajax.connection.open("GET", 'inc/hip_price.php?council='+id, true);

		document.getElementById('hip_prices').innerHTML='<div id="load"><img src="style/load.gif" /></div>';
		
		ajax.connection.send(null); 
		  ajax.connection.onreadystatechange = function () {
		  	if (ajax.connection.readyState  == 4)
		  	{
		  		if (ajax.connection.status == 200) { 
		  			document.getElementById('white_content_middle').style.height='auto';
		  			document.getElementById('hip_prices').innerHTML=ajax.connection.responseText;
		  			
		  		}
		  	}
		  }
		
	}
}

function changeCouncil(id) {
	var ajax=new ajaxConn();
	if (ajax.success==true)
	{
		
		ajax.connection.open("GET", 'inc/hip_price.php?councilname='+id, true);

		var child=document.getElementById('pack');
		var parent=child.parentNode;
		parent.innerHTML='';
		
		//document.getElementById('hip_prices').innerHTML='<div id="load"><img src="style/load.gif" /></div>';
		
		ajax.connection.send(null); 
		  ajax.connection.onreadystatechange = function () {
		  	if (ajax.connection.readyState  == 4)
		  	{
		  		if (ajax.connection.status == 200) { 
		  			parent.innerHTML=ajax.connection.responseText;
		  			
		  		}
		  	}
		  }
		
	}
}