Решение на jQuery:Код
<input type="text" id="apoinput" />
<input type="button" id="apook" value="OK" />
<img class="apoimg" />
<script>
$('#apook').click(function () {
var a = $('#apoinput').val();
if(a.indexOf('.jpg') != -1 || a.indexOf('.jpeg') != -1 || a.indexOf('.png') != -1 || a.indexOf('.gif') != -1) {
$('.apoimg').attr('src', a);
};
});
</script>
Демонстрация: http://jsfiddle.net/apoucoz/5g8odyk8/