[jQuery] Match a named dropdown

[jQuery] Match a named dropdown


Dear,
I'm looking for a way to match a dropdown with a specific name.
Unfortunately, I cannot add a id to this field.
Here is the html code of my dropdown:
<select name="opportunity_type">
<option value="" selected="">--None--</option>
<option value="controle">Controle</option>
<option value="security">Security/option>
</select>
And I'm trying to access it in this code:
$("select").change(function () {
$("select option:selected").each(function () {
if ($(this).val() == "controle" ) {
...
}
});
})
.change();
The problem is that I have more than one <select> in my form, and this
code reload my page for each <select> ! Maybe because of the
each(function () ... ?
Any idea ?
--
Damien