﻿function standvalue(group, text){
	group.each(function() {
		$(this).attr("value",text);
	});
	group.one("click", function(){
		$(this).attr("value","");
    });
	
}
