	
	function listthanax(inForm,selected) {
	var strLabel="";
	var strValue="";
	var selectedArray = eval("Array"+selected);
	while (selectedArray.length < inForm.thanax.options.length) {
		inForm.thanax.options[(inForm.thanax.options.length - 1)] = null;
	}

// No district Selelcted
	if (selected=='0000'){
					"--Choose thanax/ Upazilla-->-000000"
	
	}

	for (var i=0; i < selectedArray.length; i++) {
		strLabel=selectedArray[i].substr(0,selectedArray[i].length-7);
		strValue=selectedArray[i].substr(selectedArray[i].length-6);
		eval("inForm.thanax.options[i]=" + "new Option" + "('"+strLabel+"')");

	}

	if (inForm.distx.options[0].value == '') {
		inForm.distx.options[0]= null;
  }
}
