<!--
function adv_st_ct_loc_display_model(var1)
{
	adv_srhfound = 0;
	cityname = "abc";
	proj_who = document.formprop.projwho[document.formprop.projwho.selectedIndex].value;

	if( var1 == '1' )
	{
		adv_srhsite_id = proj_who;
		adv_srhhid_model_str = document.formprop.sbprop_st.value;
		adv_srhdestList = document.formprop.state;
		removeAllChild(document.formprop.ct);
		document.formprop.ct.options[0] = new Option("--- Select City ---", "---");
		removeAllChild(document.formprop.location);
		document.formprop.location.options[0] = new Option("--- Select Location ---", "---");
	}
	if( var1 == '2' )
	{
		adv_srhsite_id = document.formprop.state[document.formprop.state.selectedIndex].value;
		adv_srhhid_model_str = document.formprop.sbprop_ct.value;
		adv_srhdestList = document.formprop.ct;
		removeAllChild(document.formprop.location);
		document.formprop.location.options[0] = new Option("--- Select Location ---", "---");
	}
	if( var1 == '3' )
	{
		adv_srhsite_id = document.formprop.ct[document.formprop.ct.selectedIndex].value;
		if(proj_who == 'B')
		{
			adv_srhhid_model_str = document.formprop.sbprop_b_area.value;
		}
		if(proj_who == 'I')
		{
			adv_srhhid_model_str = document.formprop.sbprop_area.value;
		}
		if(proj_who == 'E')
		{
			adv_srhhid_model_str = document.formprop.sbprop_e_area.value;
		}
		adv_srhdestList = document.formprop.location;
	}
	removeAllChild(adv_srhdestList);

	k = -1;
	k = k+1;
	if( var1 == '1' )
	{
		adv_srhdestList.options[k] = new Option("--- Select State ---", "---");
	}
	if( var1 == '2' )
	{
		adv_srhdestList.options[k] = new Option("--- Select City ---", "---");
	}
	if( var1 == '3' )
	{
		adv_srhdestList.options[k] = new Option("--- Select Location ---", "---");
	}

	if(adv_srhsite_id != '---')
	{
		adv_srhmodel_siteArr = adv_srhhid_model_str.split('::');
		for (var i=0;i<adv_srhmodel_siteArr.length;i++)
		{
			adv_srhsite_arr = adv_srhmodel_siteArr[i].split(':');
			if(adv_srhsite_arr[0] == adv_srhsite_id)
			{
				adv_srhmodel_arr = adv_srhsite_arr[1].split('^^');
				for (var j=0;j<adv_srhmodel_arr.length;j++)
				{
					if(adv_srhmodel_arr[j] != '')
					{
						adv_srhfound = 1;
						adv_srhmodel_info_arr = adv_srhmodel_arr[j].split('^');
						if(adv_srhmodel_info_arr[0] == proj_who && (var1 == '2' || var1 == '3'))
						{
							k = k+1;
							adv_srhmodel_id = adv_srhmodel_info_arr[1];
							adv_srhmodel_name = adv_srhmodel_info_arr[1];
							adv_srhdestList.options[k] = new Option(adv_srhmodel_name, adv_srhmodel_id);
						}
						if(var1 == '1')
						{
							k = k+1;
							adv_srhmodel_id = adv_srhmodel_info_arr[1];
							adv_srhmodel_name = adv_srhmodel_info_arr[1];
							adv_srhdestList.options[k] = new Option(adv_srhmodel_name, adv_srhmodel_id);
						}
					}
				}
			}
		}
	}

	if( var1 == '1' )
	{
		document.formprop.state.selectedIndex = 0;
	}
	if( var1 == '2' )
	{
		document.formprop.ct.selectedIndex = 0;
	}
	if( var1 == '3' )
	{
//		adv_srhdestList.removeChild(adv_srhdestList[0]);
		if(adv_srhsite_id != '---')
		{
			adv_srhdestList.options[0] = new Option("--- All ---", "ALL");
		}
		document.formprop.location.selectedIndex = 0;
	}
}
function removeAllChild(destList)
{
	for(var i1 = 0; i1 < destList.length; i1++) {
		destList.removeChild(destList[i1]);
	}	
	destList.options.length=0
}
-->
