	/* author: herculespuri@yahoo.com */
	/* Generated by AceHTML Freeware http://freeware.acehtml.com */
	/* Creation date: 1/18/2003 */
	function jFilterCTR()
		{

			var ContinentId=document.frmReg.Continent.value;
			document.frmReg.ContinentName.value = document.frmReg.Continent.options[document.frmReg.Continent.selectedIndex].text;
			var objOne= document.frmReg.CountryHidden;
			var country=document.frmReg.Country;
			for(i=1;i<document.frmReg.Country.length;i++)
			{
				document.frmReg.Country.options[i]=null;
				i--;
			}
			toIndex=1;
			for(i=0;i<objOne.length;i++)
			{
				key= objOne.options[i].value;
				arr=key.split("~");
				//alert(arr[0] + "=" + arr[1] + "-" );
				if (arr[0]==ContinentId)
				{
					val = objOne.options[i].text;
					if (trim(val) != "")
					{
						country.options[toIndex]=new Option(val,arr[1]);
						toIndex++;
					}
					//alert(arr[0] + "=" + arr[1] + "-" + val);
				}
			}
			//### check for setting blank value for Continent and country name if no continent is selected
			if (ContinentId == "")
			{
				document.frmReg.ContinentName.value = "";
				document.frmReg.CountryName.value = "";
				document.frmReg.CountryID.value = "";
			}
		}