function getJob()
{
	var city_id = document.getElementById("city_id");
	city_value = city_id.options[city_id.selectedIndex].value;
	xajax_getJob(city_value);
}

function checkJob()
{
	var job = document.getElementById("job");
	job_value = job.options[job.selectedIndex].value;
	xajax_checkJob(job_value);
}

function submitForm()
{
	xajax_submitForm(xajax.getFormValues("form1"));
}
