Perl (62)
Perl, 62 bytes
This function takes the strings as arguments and returns true or false.
sub f{my@a;for$.(1,-1){$a[ord]+=$.for split//,pop}!grep{$_}@a} Stores the ASCII values in an array and checks if it evens out. Increments for the first word and decrements for the second word.