var sCtlPN = 'ctl00$';
var sCtlPI = 'ctl00_';
function cItemSelClick(e, aId) {
	var sBox = document.getElementById(sCtlPI + 'sItemSelect')
	sBox.value = aId;
	var eI = sBox.nextSibling;
	//alert(eI.tagName +" "+ eI.id +" "+ eI.name +" "+ eI.value);
	eI.click(e);
}