$(document).ready( function(){
				show_response();
			    });

function show_response() {
	    var a = document.location.href.split('#');
	    if (a[1]) {
			if (a[1] == 'form-ok') {
						$("#response").show();
						}
			}
	}

