var filesExt = ['jpg', 'gif', 'png']; // массив расширений
$('input[type=file]').change(function(){
var parts = $(this).val().split('.');
if(filesExt.join().search(parts[parts.length - 1]) != -1){
alert('Good!');
} else {
alert('WTF?!');
}
});
назва файла app.php