function swapProd()
{
var image = document.getElementById("prodImage");
var dropd = document.getElementById("prodDrop");
image.src = "images/ej/" + prodArrJS[dropd.value][2] + ".jpg";
}
the function is on an onchange in a form dropdown where "prodDrop" is the option field. "prodArrJS" is a 2d array. It's not accepting "dropd.value".