/*	Places the data within the specified tag id for the form.
	@param	jsonData JSON	Containing:  data and elementId
*/
function getL2DFormData(jsonData){
	document.getElementById(jsonData.elementId).innerHTML = jsonData.data;
}
