function buttonSetPageContentTypeAndShowDiv(asCol, asPid, asSelect) {
	var lsOptions = asSelect.options;
	var lsTypePK = asSelect[asSelect.selectedIndex].value;

	// set field form column value
	document.getElementById(asCol).value = lsTypePK+':0';

	// manage layer visibility
	for (i=0; i < lsOptions.length; i++) {
		var lsDivT = document.getElementById(asCol+'_div_'+lsOptions[i].value);
		if (lsDivT != null) {
			lsDivT.style.display = 'none';
		}
	}
	var lsShowDivT = document.getElementById(asCol+'_div_'+lsTypePK);
	if (lsShowDivT != null) {
		lsShowDivT.style.display = 'block';
	}


// buttonOpenPopUpListing(asCol, asPid, lsTypePK);
}
