jQuery(document).ready(function() {
	jQuery("input.aw").each(function() {
	
         	jQuery(this).parent().append("&pound;"+(aw_price(this.value)));
		 
		 }	
	)
})

	
function aw_price(code){
	    return jQuery.ajax({ 
		type: 'GET', 
		url: 'http://www.marlec.co.uk/awtest.php?prodsenum='+code, 
		dataType:'text', 
	    async:false}).responseText;
}

        
