Write below code:-
<script type = "text/javascript">
function ReplaceCharacters()
{
var str = document.getElementById('txt_comments').value;
//It will replace all characters except alphabets, characters. and space
alert(str.replace(/[^a-zA-Z0-9-. ]/g, ""));
}
</script>