// JavaScript Document


function Change_Situation(sType){
	
	if(sType=='Zone')
	{
		var iId_Zone = document.getElementById('Situation_Zone').value;
		document.getElementById('Id_Situation_Country').value = 0;
		//document.getElementById('Id_Situation_Region').value = 'Select Region';
		//document.getElementById('Id_Situation_City').value = 'Select City';
		Ajax_Send_Data('Action=ZONE|Id_Situation_Zone='+iId_Zone,'./Ajax/Ajx_Manage_Situation_Form.php');
	}
	else if(sType=='Country')
	{
		var iId_Country = document.getElementById('Id_Situation_Country').value;
		document.getElementById('Id_Situation_Region').value = 0;
		//document.getElementById('Id_Situation_City').value = 'Select City';
		Ajax_Send_Data('Action=COUNTRY|Id_Situation_Country='+iId_Country,'./Ajax/Ajx_Manage_Situation_Form.php');
	}
	else if(sType=='Region') 
	{
		document.getElementById('Id_Situation_City').value = 0;
		var iId_Region = document.getElementById('Id_Situation_Region').value;
		Ajax_Send_Data('Action=REGION|Id_Situation_Region='+iId_Region,'./Ajax/Ajx_Manage_Situation_Form.php');
	}
	
}

/*-----------------------------------------------------------------------------------------*/

