<!DOCTYPE HTML>
<html>
<head>
<style>
body{
width:100%;
}
</style>
</head>
<body style="padding-top:200px;width:100%;text-align:center">
<select name="" id="select">
<option value="">11111111111</option>
<option value="">22222222222</option>
<option value="" selected>33333333333</option>
<option value="">44444444444</option>
<option value="">55555555555</option>
</select>
<script>
document.getElementById('select').focus();
document.onclick = function(e) {if(Key){
alert('Сработало событие onclick!');
}}
var Key = true;
document.getElementById('select').onchange = function() {
Key = false; //Запрет onclick на время смены селекта
setTimeout('Key = true',40)
}
</script>
</body>
</html>