<script>
$(function(){
//LOOP OVER EVERY FORM ROW
$(".siteBottom #enquiry .enqRow").each(function(){
//GET .enqLeft TEXT
var placeHold = $(this).find('.enqLeft').text();
$(this).find("input[type=text], input[type=email], input[type=tel], textarea").attr("placeholder", placeHold);
});
});
</script>