Use ngmodel
variable inside routerlink
like this
<div class="center"><div class="form-group"><label>Select Country</label><select class="form-control" [(ngModel)]="selectedOption"><option *ngFor="let o of options" [value]="o.value">{{o.name}} </option></select> <button><a [routerLink]="selectedOption">Submit</a></button>{{selectedOption}}</div></div>