Clear the style attribute on a given Aras form field
////////////////////// Helpful functions ///////////////////////////////////
// sets a specific attribute for all elements in a collection
setAttributeOnAll = function(els, attrName, attrVal)
{
for (var i=0; i < els.length; i++)
els[i].setAttribute(attrName,attrVal);
};
////////////////////// Override default styles /////////////////////////////
// inline label style
var labels = document.getElementsByClassName("sys_f_label");
setAttributeOnAll(labels,'style','');