I was able to fix it!!
if anyone is wondering how to remove it – go to functions.php and remove this code…
` echo ‘<form id=”product_order”><select id=”product_order_selector” name=”product_order”>’;
foreach ($sort_options as $name => $value) {
$option = ‘<option value=”‘.$name.'” ‘.selected($name, $selected, 0).’>’.$value.'</option>’;
echo apply_filters(‘product_order_dropdown_options’, $option, $name, $value, $multiple_settings, $selected);
}
echo ‘</select></form>’;
echo ‘<script>jQuery(“#product_order_selector”).change(function() { jQuery(“#product_order”).submit(); });</script>’;