function changeImage()
{
	var obj = document.getElementById('imageList');
	var filepath = "upload/" + obj.options[obj.selectedIndex].value;
	
	document.images['objectImg'].src = filepath;
}