

            <tr valign="top">
                <th scope="row" class="middle">
                    <label for="widgetPos">Widget Position</label>
                </th>
                <td>
                    <select id="widgetPos" title="Indicate where you want your widget on the posts" name="proGrids[widgetPos]">
<?php
foreach ($widgetPositions as $pos => $name) {
    ?>
                        <option value="<?php echo $pos; ?>" <?php echo $pos == $widgetPos ? 'selected=""' : ''; ?>><?php echo $name; ?></option>
    <?php
}
?>
                    </select>
                </td>
            </tr>