//do when the document is ready
$(document).ready(function() {
    		    		
    //$(".productdetails").each(function () { 	   
	//	var value = $(this).text(); // value = 9.61 use $("#text").text() if you are not on select box...
	//	value.replace("0", "1"); // value = 9:61
	//});
	
	
	if($("div.onetime").text() == "$0.00 AUD One Time")
	{
		$("div.onetime").hide();
	}

}); //END do when the document is ready

