$(document).ready( function()
{


$('label:contains("**")').each(function()
{

var $this = $(this)

$this.html($this.html().replace("**","*"))


})

})





