var cpcomp = new cpaint();

cpcomp.set_transfer_mode('get');
cpcomp.set_response_type('xml');
cpcomp.set_async(true);
cpcomp.set_debug(0);


//////Locacation////////////////////////////////////////////////////////////////////////
function get_CityLoc()
{
  showWait('showmsgl');
  var countryid = $('su_countryl').value;
  cpcomp.call('company_ajax.php','get_city',city_resultsl,countryid,'CityLoc');
}
function city_resultsl(result) {
	/////////hide the loading message/////////////////////
	$('showmsgl').innerHTML="Done...";
	$('showmsgl').style.display = 'none';
	//////////////////////////////////////////////////////
	var x=result.documentElement; //store the result in var
	var text=x.childNodes[0].childNodes[0].nodeValue;
	$('combol').innerHTML = text;
}

function doPost(){

	var checked;
	for(i=0; i< $('frmpackaages').chkpackage.length; i++){
		
    if($('frmpackaages').chkpackage[i].checked)
        checked=true;
	}

	if (checked==true)
		$('frmpackaages').submit();
	else
		alert('Please select a package');
	
	
}