}
        echo '<OPTION value="' . $row->oe_kurzbz . '" ' . $selected . '>' . $row->organisationseinheittyp_kurzbz . ' ' . $row->bezeichnung . '</OPTION>';
    }
    echo '</SELECT>';
    echo '
				</td>
			</tr>
			<tr>
				<td>Bezeichnung</td><td><input type="text" size="50" name="bezeichnung" value="' . $oe->bezeichnung . '"></td>
			</tr>
			<tr>
				<td>Typ</td><td>';
    //TYP DropDown
    echo '<SELECT name="organisationseinheittyp_kurzbz">';
    $hlp = new organisationseinheit();
    $hlp->getTypen();
    foreach ($hlp->result as $row) {
        if ($row->organisationseinheittyp_kurzbz == $oe->organisationseinheittyp_kurzbz) {
            $selected = 'selected';
        } else {
            $selected = '';
        }
        echo '<OPTION value="' . $row->organisationseinheittyp_kurzbz . '" ' . $selected . '>' . $row->organisationseinheittyp_kurzbz . '</OPTION>';
    }
    echo '</SELECT>';
    echo '</td>
			</tr>
			<tr>
				<td>Aktiv</td><td><input type="checkbox" name="aktiv" ' . ($oe->aktiv ? 'checked' : '') . '></td>
			</tr>
			<tr>