﻿function getWaterfrontTypes(ctrl) {
    $.ajax({
        type: "POST",
        contentType: "application/json; charset=utf-8",
        url: "/Services/WaterfrontTypes.asmx/RetrieveWaterfrontTypestring",
        data: "{}",
        dataType: "json",
        async:true,
        success: function(msg) {
            document.getElementById(ctrl).innerHTML = "";
            $("#" + ctrl).append(msg.d);
        }
    });
}