<script>
jQuery(document).ready(function ($) {
(function changeTextRegForm () {
var reg_form = $('#reg_form');
var termsConditions = '<a href="/company/terms-and-conditions/">Terms & Conditions</a>';
var privacyPolicy = '<a href="/company/privacy-policy/">Privacy Policy</a>';
var text = 'I am over 18 years of age and I accept the '+ termsConditions +' and ' + privacyPolicy;
reg_form.find("label[for*='registration-accept']").html(text);
})()
});
</script>