$(document).ready(function () {
$('.rpText').each(function () {
var text = $(this).text();
var index = text.indexOf("&");
if (index > -1)
text = text.substring(index + 1, text.length);
$(this).text(text);
});
$('.rpText').each(function () {
var text = $(this).text();
var index = text.indexOf("&");
if (index > -1)
text = text.substring(index + 1, text.length);
$(this).text(text);
});