<div id="divcheg">
<form onsubmit="showLoading(); return false;">
<input type="text">
<input type="submit">
</form>
<div id="loading" style="display: none;">Идет загрузка...</div>
</div>
function showLoading() {
document.getElementById('divcheg').style.display = "none";
document.getElementById('loading').style.display = "block";
//Шлем запрос, по окончании которого должна выполниться функця hideLoading()
}
function hideLoading() {
document.getElementById('divcheg').style.display = "block";
document.getElementById('loading').style.display = "none";
}