var imagebox=document.getElementById("imagebox")
var imageselect=document.getElementById("imageselect")
var imagelist=["https://kohinoor.sapnaoswal.in/wp-content/uploads/2015/12/PVC1.jpg", "https://kohinoor.sapnaoswal.in/wp-content/uploads/2015/12/Fiberglass.jpg", "https://kohinoor.sapnaoswal.in/wp-content/uploads/2015/11/sportsnets500x500.jpg", "amster4.jpg"]
imageselect.onchange=function(){
if (this.selectedIndex!=0){
imagebox.src=imagelist[this.selectedIndex-1]
}
}