function $(elm) { return document.getElementById(elm); }

addLoadEvent(function() {
	$("sr_submit").onsubmit = storeServiceability;	
});

function storeServiceability() {
	jQuery('body').qtip('hide');

	var pc = document.getElementById("pc").value;

	ServiceabilityAjax.StoreServiceability({postal_code: pc});
	
	return false;
}
