// JavaScript Document


function Change_Situation(sType, sId_Sufix){
	
	if(sType=='Zone')
	{
		var iId_Zone = document.getElementById('Situation_Zone'+sId_Sufix).value;
		document.getElementById('Id_Situation_Country'+sId_Sufix).value = 0;
		//document.getElementById('Id_Situation_Region').value = 'Select Region';
		//document.getElementById('Id_Situation_City').value = 'Select City';
		Ajax_Send_Data('Id_Sufix='+sId_Sufix+'|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'+sId_Sufix).value;
		document.getElementById('Id_Situation_Region'+sId_Sufix).value = 0;
		//document.getElementById('Id_Situation_City').value = 'Select City';
		Ajax_Send_Data('Id_Sufix='+sId_Sufix+'|Action=COUNTRY|Id_Situation_Country='+iId_Country,'./Ajax/Ajx_Manage_Situation_Form.php');
	}
	else if(sType=='Region') 
	{
		document.getElementById('Id_Situation_City'+sId_Sufix).value = 0;
		var iId_Region = document.getElementById('Id_Situation_Region'+sId_Sufix).value;
		Ajax_Send_Data('Id_Sufix='+sId_Sufix+'|Action=REGION|Id_Situation_Region='+iId_Region,'./Ajax/Ajx_Manage_Situation_Form.php');
	}
	
}

/*-----------------------------------------------------------------------------------------*/

