Hi,

I have a select list as seen below and I want to keep the selected value after it automatically selects can anyone help please? I have tried a few things using javascript but nothing seemed to work.

Code:
<select name="inteu_06" onchange="this.form.submit()" style="margin-right:0px">
        <option value="~">Price Limit - Any</option>
        <?php
do {  
?>
        <option value="<?php echo $row_Recordset1['inteu_06']?>"><?php echo $row_Recordset1['inteu_06']?></option>
        <?php
} while ($row_Recordset1 = mysql_fetch_assoc($Recordset1));
  $rows = mysql_num_rows($Recordset1);
  if($rows > 0) {
      mysql_data_seek($Recordset1, 0);
	  $row_Recordset1 = mysql_fetch_assoc($Recordset1);
  }
?>
      </select>
Many thanks
Joe