function cityProgramSelector(progctry){//
	var xhr21 = new xmlHttpR();
	xhr21.open('GET', 'applayNew/progCitiesSuggest.php?pcty='+progctry, true);
	xhr21.onreadystatechange=function() {
		if (xhr21.readyState==4)  {
			var resp21 = xhr21.responseText;
			if( resp21 == 'non' ) {
				document.getElementById("pcitiesOpt").innerHTML="<select name='citiesDestination' class='style29'><option value=''>No Suggest</option></select>"; 
			}
			else
			{
				if(resp21 == ''){
					document.getElementById("pcitiesOpt").innerHTML="<select name='citiesDestination' class='style29'><option value=''>No Suggest</option></select>";
				}
				else
				{
					document.getElementById("pcitiesOpt").innerHTML=resp21;
				}
			}
		}
	}
	xhr21.send(null);
}