function GetContent(action , country_id , city_id) //for seelecte code city_id = posted_code value

{	

	var url;

	var param;

	var target;

	var myAjax;

	switch (action)

	{

		case "showCities":

			//alert("Z");

			//alert(city_id);

			

			url = "includes/ajax/post_job.php";

			param = "action="+ action + "&country_id="+ country_id + "&city_id="+ city_id +"&rand="+ Math.floor(Math.random() * 1000000), true;

			target = action;

			

			myAjax = new Ajax.Updater(target,url,{method: 'get', parameters: param});



		break;







	}

}





function GetSubSkills(action, skill_id) { 

	var url;

	var param;

	var target;

	var myAjax;

	switch (action)

	{



		case "showSubSkills":



			url = "includes/ajax/post_job.php";

			param = "action="+ action + "&skill_id="+ skill_id +"&rand="+ Math.floor(Math.random() * 1000000), true;

			//alert(param);

			target = action;

			

			myAjax = new Ajax.Updater(target,url,{method: 'get', parameters: param});



		break;







	}

		

}

function GetJobCategories(action, industry_id) { 

	var url;

	var param;

	var target;

	var myAjax;

	switch (action)

	{



		case "showJobCategories":



			url = "includes/ajax/post_job.php";

			param = "action="+ action + "&industry_id="+ industry_id +"&rand="+ Math.floor(Math.random() * 1000000), true;

			//alert(param);

			target = action;

			

			myAjax = new Ajax.Updater(target,url,{method: 'get', parameters: param});



		break;







	}

		

}



