I have this php code to generate a select form. What I'm looking for is create a "X" button at right side for resetting the form to default value [0] index. Here is a picture of what I want to accomplish. How can I do that? Thanks This is where the X should be located
echo '<li><div class="styled-select">' . tep_draw_form('sort',`
htmlentities($_SERVER['PHP_SELF']), 'get') . '';
$sort_list = array('0' => 'Sort By',
'1' => 'Product Name',
'2' => 'Price: Low to High',
'3' => 'Price: High to Low',
echo tep_draw_hidden_field('page', $page);
foreach($sort_list as $id=>$text) {
$sort_range[] = array('id' => $id, 'text' => $text);
}
echo tep_draw_pull_down_menu('sort', $sort_range, (isset($HTTP_GET_VARS['sort']) ?
$HTTP_GET_VARS['sort'] : ''), 'onchange="this.form.submit()"');
echo '</form></div></li>';