Non sono sicuro, ma penso che dovrai stampare il tuo valore in html balise (nascosto archiviato per esempio) e recuperarlo usando javascript:document.getElementById
esempio:
<input type="hidden" id="valueForJs" value="244-125">
<script>
var obj = document.getElementById("valueForJs").value;
var array = obj.split("-");
alert('value = ' + array[0] + ' ' + array[1]);
// now you have your 2 value and you can use it in your script below...
</script>
Puoi anche inserire il valore in un span
e hide
questo intervallo per esempio, ma penso che l'input sarà più pulito.