function lstOption_onclick() {
	document.thisform.submit()
}

function btnSubmit_onclick() {
	var intIndex, strValue
	
	if (strLstOption2 != "dockt_id")
	{	
		intIndex = document.thisform.lstList.selectedIndex;
		strValue = document.thisform.lstList.options[intIndex].text;
		document.thisform.txtList.value = strValue;
	}
}
