function gup( name )
{
  name = name.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]");
  var regexS = "[\\?&]"+name+"=([^&#]*)";
  var regex = new RegExp( regexS );
  var results = regex.exec( window.location.href );
  if( results == null )
    return "";
  else
    return results[1];
}
$('document').ready(function(){
	var value = gup("custom5");
	if (value){
		$("#Delegation_Application select[name='custom5'] option[value='"+value+"']").attr('selected','selected');
	}
});
