1
2jQuery( document ).ready(function() {
3jQuery( "#pmodified, #pcreated" ).on( "click", function() {
4   if(this.id == 'pcreated') {
5       jQuery("#pmodified").prop('checked',false);
6   }
7   else jQuery("#pcreated").prop('checked',false);
8});
9});
10