function ddmc(s)
{
   var i, x = "";
   for (i = 0; i < s.length; i++) x += String.fromCharCode(s.charCodeAt(i) - 1);
   
   return x;
}
