You will have to use JavaScript to split the text into words, use the "split(separator)" method to create an array of elements, each element being one word. Convert each element's string value to lower case. You can then use the "substring(indexA, indexB)" to get the first letter of each element string and convert it to upper case and concatenate it to the substring of the element less the first letter.