//Tæller hvor mange tegn man har tilbage i sin besked
var intCharCount = 0;

function charCount(){
  alertCut = 200;
  intCharCount = alertCut - document.getElementById("kommentar").value.length;
  if(document.getElementById("kommentar").value.length > alertCut) {
    document.getElementById("kommentar").value = document.getElementById("kommentar").value.substring(0,alertCut);
    intCharCount = 0;   }

  document.getElementById("charcount").innerHTML = intCharCount;
}