
function togglePic(imgId,selectId,position) {
	var picNum = document.getElementById(selectId).value;
	if(picNum > 0) {
		document.getElementById(imgId).src="http://www.carbisonline.com/skin/frontend/ricks/default/images/"+position+"-"+picNum+".png";
	}
}
