// JavaScript Document
function submitChange(hiddenId){
	var hId = document.getElementById(hiddenId);
	
	hId.value = 'submit';
	//alert(hId.value);
	return true;
	
}


