I have problem with the onclick
event in Chrome it's working in FireFox.
my code is:
<select type="list" name="adscity" id="adscity" class="ads-select2" >
<?php while($row=mysql_fetch_array($result)) { ?>
<option value="<?php echo $row['id']; ?>" onclick="document.getElementById('adscity_h').value=this.value" >
<?php echo $row['title']; ?> </option>
<?php } ?>
</select>