HTML:
<p>
<label for="rolle">Rolle:</label>
<select id="rolle" style="float:right;width:154px;" name="rolle">
<option value="1">Administrator</option>
<option value="2">Autor</option>
</select>
</p>
jQuery:
$(document).ready(function()
{
$('#rolle').change(function()
{
if($('#rolle option[value="1"]:selected'))
{
alert("YES");
}
});
});