	function GetBusinessChildClassData(id,dropDownListName,selectID)
	{
		var table = SearchNavigation.GetAllBusinessClassByParentID(id).value;
		var dropDownList = document.getElementById(dropDownListName);	
			
		if (table != null && typeof(table) == "object" && table != null)
		{								
			dropDownList.options.length = table.Rows.length;	
											
			for (var i=0;i<table.Rows.length;i++)
			{		
				dropDownList.options[i].text = table.Rows[i].ClassName;
				dropDownList.options[i].value = table.Rows[i].ID;
				if (table.Rows[i].ID == selectID)
				{
					dropDownList.options[i].selected = true;
				}
			}
		}
	}

