How to get label text value form a html page?
Try this:
document.getElementById('*spaM4').textContent
If you need to target < IE9 then you need to use .innerText
This will get what you want in plain JS.
var el = document.getElementById('*spaM4');
text = (el.innerText || el.textContent);
FIDDLE