<select name="user[style]">
<?php foreach ($css_styles as $style): ?>
<option value="<?= $style ?>"<?= $current_style == $style ? ' selected="selected"' : '' ?>><?= $style ?></option>
<?php endforeach; ?>
</select>
<?= $error ? '<br />' . $this->lng->css_style_isnt_exists : '' ?>