/*
	ticks the specified checkbox or radio
*/
function tickBox(_id) {
	$("#" + _id).get(0).checked = true;
}
