function itemsEditorEditInPlaceSelect(id, value) {
	return function() {
		var optval = document.getElementById(id).options[document.getElementById(id).selectedIndex].value;		
		document.getElementById('subform' + id).style.display = (optval==value ? '' : 'none');
	}
}

