View file sys/themes/dark_touch/tpl/design.order.tpl.php

File size: 369B
<div class="form">
    <select class="gradient_grey border padding radius" onchange="location = this.options[this.selectedIndex].value;">
        <?
        foreach ($order AS $option) {
            echo '<option value="' . $option[0] . '"' . (!empty($option[2]) ? ' selected="selected"' : '') . '>' . $option[1] . '</option>';
        }
        ?>
    </select>
</div>