var valid = 'v_rejestracja.php';

$(document).ready(function() {
	$("#rodzaj").click(function() {
		var wybor = this.value;
		if (wybor==0) {
			$("#zgoda").attr("checked", "checked");
			$("#u_pesel").attr("disabled", true);
			$("#u_pesel").attr("value", "");
			$("#u_pesel").attr("style", "background-color:grey; width:168px; height:14px");
			$("#f_nip").removeAttr("disabled");
			$("#f_nip").attr("style", "background-color:white; width:168px; height:14px");
			$("#f_regon").removeAttr("disabled");
			$("#f_regon").attr("style", "background-color:white; width:168px; height:14px");
		}
		else if (wybor==1) {
			$("#zgoda").attr("checked", "");
			$("#u_pesel").removeAttr("disabled");
			$("#u_pesel").attr("style", "background-color:white; width:168px; height:14px");
			$("#f_nip").attr("disabled", true);
			$("#f_nip").attr("value", "");
			$("#f_nip").attr("style", "background-color:grey; width:168px; height:14px");
			$("#f_regon").attr("disabled", true);
			$("#f_regon").attr("value", "");
			$("#f_regon").attr("style", "background-color:grey; width:168px; height:14px");
		}
	});
});
