function pbFormElementSelectOtherChange(e, nofocus)
{
	if (e.selectedIndex == e.options.length-1) {
		document.getElementById(e.id + '_other').style.display = '';
		if (!nofocus) {
			document.getElementById(e.id + '_other').focus();
		}
	} else {
		document.getElementById(e.id + '_other').style.display = 'none';
	}
}
