$(document).ready(function(){

var dateLength = $('#duk_postcode div.box_alt .date p em strong').html().length;
var maxLength = 15
	
	if(dateLength > maxLength){
			$('#duk_postcode div.box_alt .date p em strong').addClass('text-resize');
		}
		else{
			return;
			}

});