Javascript String decapitalize()
decapitalize()
String.prototype.decapitalize = function () { return this.charAt(0).toLowerCase() + this.slice(1); }