$(document).ready(function() {
	if(window.location.hash && window.location.hash.length>1) {
		$("#idSubject").val(window.location.hash.substring(1));
	}
	$("#idSubject").change(function() {
		window.location.hash = "#"+$("#idSubject").val();
	});
});