Я попробовал вот так но не получается:
$('#photo').append("<img src='noindex/images_user/").append(this.options[this.selectedIndex].value).append(".jpg'>");
когда вставляю:
alert("<img src='noindex/images_user/").append(this.options[this.selectedIndex].value).append(".jpg'>");
Выводит: <img src='noindex/images_user/
Сделал так:
предваоительно создав переменную id
alert("<img src='noindex/images_user/"+id+".jpg'>");
Выводит:<img src='noindex/images_user/undefined.jpg'>