Use the string.toLowerCase() function as the example below

 
	<script type="text/javascript">
 
	var str="I NEED THIS STRING TO BE CONVERTED TO LOWER CASE";
 
	document.write(str.toLowerCase());
 
	</script>