function addFormField() {
	var id = document.getElementById("id").value;
	$("#divTxt").append("<p id='illcite" + id + "' class='ill-cite'><label for='cite" + id + "'<span>Citation " + id + "</span></label>&nbsp;&nbsp;<input type='radio' name='Type" + id + "' id='type" + id + "A' value='Article' /> <label for='type" + id + "A'>Article</label><input type='radio' name='Type" + id + "' id='type" + id + "B' value='Book' /> <label for='type" + id + "B'>Book</label><input type='radio' name='Type" + id + "' id='type" + id + "V' value='Video' /> <label for='type" + id + "V'>Video</label><br /><textarea cols='60' rows='3' name='Citation" + id + "' id='cite" + id + "'></textarea><a href='#' onClick='removeFormField(\"#illcite" + id + "\"); return false;'>Remove</a><p>");

	id = (id - 1) + 2;
	document.getElementById("id").value = id;
}
	
function removeFormField(id) {
	$(id).remove();
}
