
function ES_CitySrch(Scgetselect){
	var citycode = $('citycode');
	var SelValue = Scgetselect.options[Scgetselect.selectedIndex].value;
	if(SelValue == ''){
		citycode.options.length = 1;
		return ;
	}

	citycode.options.length = cityList[SelValue].length+1;
	citycode.selectedIndex=0;

	for(i=0 ; i < cityList[SelValue].length; i++){
		citycode.options[i+1].text = cityList[SelValue][i];
		citycode.options[i+1].value = i;
	}
}

function ES_CitySrch2(SelValue,CityValue){
/*
	if( SelValue.length < 2 ){
		SelValue = '0'+SelValue;
	}
	if( CityValue.length < 5 ){
		CityValue = '0'+CityValue;
	}
*/
	var citycode = $('citycode');
	if(SelValue == '' || CityValue == ''){
		citycode.options.length = 1;
		return ;
	}

	citycode.options.length = cityList[SelValue].length+1;
	citycode.selectedIndex=0;

	for(i=1 ; i < cityList[SelValue].length ; i++){
        if( CityValue == i-1 ){
            citycode.selectedIndex=i;
        }
		citycode.options[i].text = cityList[SelValue][i];
		citycode.options[i].value = i;
	}

	
}

//  Option Clear  //______________________________// 
function ES_OpClr(){
	var citycode = $('citycode');
	citycode.options.length = 1;
}
