function updateImage(orig)
{
	var url = 'scripts/ajax_getimage.php';
	var pars = 'id='+orig.id+'&value=' + orig.value;
	new Ajax.Updater('i'+orig.id, url,{
		method: 'post',
		parameters: pars,
		success: 'i'+orig.id
		});
}
