See my demo page for where I have it working on an img src but not an input which is what I really want.
Here's the link to my testing / demo page: http://www.myu2sig.com/stellardonations/buttontype.php
As for what I want to do, how can I apply the function to the input so it's image changes on the value of the select like the regular image does which uses HTML's img src.
As for all of the code that produces what you see on said page:
<script type="text/javascript">
function showimage(t){
if (!document.images)
return;
document.images[t.getAttribute("name").replace("select","pics")].src=t.options[t.selectedIndex].value
}
</script>
Regular Image using: < img name="firstpics" src="/stellardonations/paypaldonate.gif" ><br />
<img name="firstpics" src="/stellardonations/paypaldonate.gif">
<br /><br />
Input Image using: < input name="firstpics" type="image" src="/stellardonations/paypaldonate.gif" border="0" name="submit" ><br />
<input name="firstpics" type="image" src="/stellardonations/paypaldonate.gif" border="0" name="submit">
<br /><br />
<select name="firstselect" onChange="showimage(this)">
<option value="/stellardonations/paypalsubscribe.gif">Yes</option>
<option selected="selected" value="/stellardonations/paypaldonate.gif">No</option>
</select>
<br /><br />
No = Donate<br />
Yes = Subscribe