<input id="file_browse" type="file" name="myfile" />
<script>
document.getElementById( 'file_browse' ).onchange = function() {
if ( this.value && !/\.(jpg|jpeg|bmp|gif|png)$/i.test( this.value ) ) {
alert( "Вы выбрали не тот файл: " + this.value.replace( /\\/g, "/" ).split( '/' ).pop() );
} else if ( this.value ) {
alert( "Все ок!" );
}
}
</script>